Reading the data into R
## Load the tidyverse packages, incl. dplyr
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.5
## ✔ forcats 1.0.1 ✔ stringr 1.5.2
## ✔ ggplot2 4.0.0 ✔ tibble 3.3.0
## ✔ lubridate 1.9.4 ✔ tidyr 1.3.1
## ✔ purrr 1.1.0
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
surveys <- read_csv("Tutorial4Project1/data_raw/portal_data_joined.csv")
## Rows: 34786 Columns: 13
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ","
## chr (6): species_id, sex, genus, species, taxa, plot_type
## dbl (7): record_id, month, day, year, plot_id, hindfoot_length, weight
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
print(surveys)
## # A tibble: 34,786 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 1 7 16 1977 2 NL M 32 NA
## 2 72 8 19 1977 2 NL M 31 NA
## 3 224 9 13 1977 2 NL <NA> NA NA
## 4 266 10 16 1977 2 NL <NA> NA NA
## 5 349 11 12 1977 2 NL <NA> NA NA
## 6 363 11 12 1977 2 NL <NA> NA NA
## 7 435 12 10 1977 2 NL <NA> NA NA
## 8 506 1 8 1978 2 NL <NA> NA NA
## 9 588 2 18 1978 2 NL M NA 218
## 10 661 3 11 1978 2 NL <NA> NA NA
## # ℹ 34,776 more rows
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
head(surveys)
## # A tibble: 6 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 1 7 16 1977 2 NL M 32 NA
## 2 72 8 19 1977 2 NL M 31 NA
## 3 224 9 13 1977 2 NL <NA> NA NA
## 4 266 10 16 1977 2 NL <NA> NA NA
## 5 349 11 12 1977 2 NL <NA> NA NA
## 6 363 11 12 1977 2 NL <NA> NA NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
view(surveys)
What are data frames
str(surveys)
## spc_tbl_ [34,786 × 13] (S3: spec_tbl_df/tbl_df/tbl/data.frame)
## $ record_id : num [1:34786] 1 72 224 266 349 363 435 506 588 661 ...
## $ month : num [1:34786] 7 8 9 10 11 11 12 1 2 3 ...
## $ day : num [1:34786] 16 19 13 16 12 12 10 8 18 11 ...
## $ year : num [1:34786] 1977 1977 1977 1977 1977 ...
## $ plot_id : num [1:34786] 2 2 2 2 2 2 2 2 2 2 ...
## $ species_id : chr [1:34786] "NL" "NL" "NL" "NL" ...
## $ sex : chr [1:34786] "M" "M" NA NA ...
## $ hindfoot_length: num [1:34786] 32 31 NA NA NA NA NA NA NA NA ...
## $ weight : num [1:34786] NA NA NA NA NA NA NA NA 218 NA ...
## $ genus : chr [1:34786] "Neotoma" "Neotoma" "Neotoma" "Neotoma" ...
## $ species : chr [1:34786] "albigula" "albigula" "albigula" "albigula" ...
## $ taxa : chr [1:34786] "Rodent" "Rodent" "Rodent" "Rodent" ...
## $ plot_type : chr [1:34786] "Control" "Control" "Control" "Control" ...
## - attr(*, "spec")=
## .. cols(
## .. record_id = col_double(),
## .. month = col_double(),
## .. day = col_double(),
## .. year = col_double(),
## .. plot_id = col_double(),
## .. species_id = col_character(),
## .. sex = col_character(),
## .. hindfoot_length = col_double(),
## .. weight = col_double(),
## .. genus = col_character(),
## .. species = col_character(),
## .. taxa = col_character(),
## .. plot_type = col_character()
## .. )
## - attr(*, "problems")=<externalptr>
Inspecting data frames
# Size
dim(surveys)
## [1] 34786 13
nrow(surveys)
## [1] 34786
ncol(surveys)
## [1] 13
# Content
head(surveys)
## # A tibble: 6 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 1 7 16 1977 2 NL M 32 NA
## 2 72 8 19 1977 2 NL M 31 NA
## 3 224 9 13 1977 2 NL <NA> NA NA
## 4 266 10 16 1977 2 NL <NA> NA NA
## 5 349 11 12 1977 2 NL <NA> NA NA
## 6 363 11 12 1977 2 NL <NA> NA NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
tail(surveys)
## # A tibble: 6 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 26787 9 27 1997 7 PL F 21 16
## 2 26966 10 25 1997 7 PL M 20 16
## 3 27185 11 22 1997 7 PL F 21 22
## 4 27792 5 2 1998 7 PL F 20 8
## 5 28806 11 21 1998 7 PX <NA> NA NA
## 6 30986 7 1 2000 7 PX <NA> NA NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
# Names
names(surveys)
## [1] "record_id" "month" "day" "year"
## [5] "plot_id" "species_id" "sex" "hindfoot_length"
## [9] "weight" "genus" "species" "taxa"
## [13] "plot_type"
rownames(surveys)
## [1] "1" "2" "3" "4" "5" "6" "7" "8" "9"
## [10] "10" "11" "12" "13" "14" "15" "16" "17" "18"
## [19] "19" "20" "21" "22" "23" "24" "25" "26" "27"
## [28] "28" "29" "30" "31" "32" "33" "34" "35" "36"
## [37] "37" "38" "39" "40" "41" "42" "43" "44" "45"
## [46] "46" "47" "48" "49" "50" "51" "52" "53" "54"
## [55] "55" "56" "57" "58" "59" "60" "61" "62" "63"
## [64] "64" "65" "66" "67" "68" "69" "70" "71" "72"
## [73] "73" "74" "75" "76" "77" "78" "79" "80" "81"
## [82] "82" "83" "84" "85" "86" "87" "88" "89" "90"
## [91] "91" "92" "93" "94" "95" "96" "97" "98" "99"
## [100] "100" "101" "102" "103" "104" "105" "106" "107" "108"
## [109] "109" "110" "111" "112" "113" "114" "115" "116" "117"
## [118] "118" "119" "120" "121" "122" "123" "124" "125" "126"
## [127] "127" "128" "129" "130" "131" "132" "133" "134" "135"
## [136] "136" "137" "138" "139" "140" "141" "142" "143" "144"
## [145] "145" "146" "147" "148" "149" "150" "151" "152" "153"
## [154] "154" "155" "156" "157" "158" "159" "160" "161" "162"
## [163] "163" "164" "165" "166" "167" "168" "169" "170" "171"
## [172] "172" "173" "174" "175" "176" "177" "178" "179" "180"
## [181] "181" "182" "183" "184" "185" "186" "187" "188" "189"
## [190] "190" "191" "192" "193" "194" "195" "196" "197" "198"
## [199] "199" "200" "201" "202" "203" "204" "205" "206" "207"
## [208] "208" "209" "210" "211" "212" "213" "214" "215" "216"
## [217] "217" "218" "219" "220" "221" "222" "223" "224" "225"
## [226] "226" "227" "228" "229" "230" "231" "232" "233" "234"
## [235] "235" "236" "237" "238" "239" "240" "241" "242" "243"
## [244] "244" "245" "246" "247" "248" "249" "250" "251" "252"
## [253] "253" "254" "255" "256" "257" "258" "259" "260" "261"
## [262] "262" "263" "264" "265" "266" "267" "268" "269" "270"
## [271] "271" "272" "273" "274" "275" "276" "277" "278" "279"
## [280] "280" "281" "282" "283" "284" "285" "286" "287" "288"
## [289] "289" "290" "291" "292" "293" "294" "295" "296" "297"
## [298] "298" "299" "300" "301" "302" "303" "304" "305" "306"
## [307] "307" "308" "309" "310" "311" "312" "313" "314" "315"
## [316] "316" "317" "318" "319" "320" "321" "322" "323" "324"
## [325] "325" "326" "327" "328" "329" "330" "331" "332" "333"
## [334] "334" "335" "336" "337" "338" "339" "340" "341" "342"
## [343] "343" "344" "345" "346" "347" "348" "349" "350" "351"
## [352] "352" "353" "354" "355" "356" "357" "358" "359" "360"
## [361] "361" "362" "363" "364" "365" "366" "367" "368" "369"
## [370] "370" "371" "372" "373" "374" "375" "376" "377" "378"
## [379] "379" "380" "381" "382" "383" "384" "385" "386" "387"
## [388] "388" "389" "390" "391" "392" "393" "394" "395" "396"
## [397] "397" "398" "399" "400" "401" "402" "403" "404" "405"
## [406] "406" "407" "408" "409" "410" "411" "412" "413" "414"
## [415] "415" "416" "417" "418" "419" "420" "421" "422" "423"
## [424] "424" "425" "426" "427" "428" "429" "430" "431" "432"
## [433] "433" "434" "435" "436" "437" "438" "439" "440" "441"
## [442] "442" "443" "444" "445" "446" "447" "448" "449" "450"
## [451] "451" "452" "453" "454" "455" "456" "457" "458" "459"
## [460] "460" "461" "462" "463" "464" "465" "466" "467" "468"
## [469] "469" "470" "471" "472" "473" "474" "475" "476" "477"
## [478] "478" "479" "480" "481" "482" "483" "484" "485" "486"
## [487] "487" "488" "489" "490" "491" "492" "493" "494" "495"
## [496] "496" "497" "498" "499" "500" "501" "502" "503" "504"
## [505] "505" "506" "507" "508" "509" "510" "511" "512" "513"
## [514] "514" "515" "516" "517" "518" "519" "520" "521" "522"
## [523] "523" "524" "525" "526" "527" "528" "529" "530" "531"
## [532] "532" "533" "534" "535" "536" "537" "538" "539" "540"
## [541] "541" "542" "543" "544" "545" "546" "547" "548" "549"
## [550] "550" "551" "552" "553" "554" "555" "556" "557" "558"
## [559] "559" "560" "561" "562" "563" "564" "565" "566" "567"
## [568] "568" "569" "570" "571" "572" "573" "574" "575" "576"
## [577] "577" "578" "579" "580" "581" "582" "583" "584" "585"
## [586] "586" "587" "588" "589" "590" "591" "592" "593" "594"
## [595] "595" "596" "597" "598" "599" "600" "601" "602" "603"
## [604] "604" "605" "606" "607" "608" "609" "610" "611" "612"
## [613] "613" "614" "615" "616" "617" "618" "619" "620" "621"
## [622] "622" "623" "624" "625" "626" "627" "628" "629" "630"
## [631] "631" "632" "633" "634" "635" "636" "637" "638" "639"
## [640] "640" "641" "642" "643" "644" "645" "646" "647" "648"
## [649] "649" "650" "651" "652" "653" "654" "655" "656" "657"
## [658] "658" "659" "660" "661" "662" "663" "664" "665" "666"
## [667] "667" "668" "669" "670" "671" "672" "673" "674" "675"
## [676] "676" "677" "678" "679" "680" "681" "682" "683" "684"
## [685] "685" "686" "687" "688" "689" "690" "691" "692" "693"
## [694] "694" "695" "696" "697" "698" "699" "700" "701" "702"
## [703] "703" "704" "705" "706" "707" "708" "709" "710" "711"
## [712] "712" "713" "714" "715" "716" "717" "718" "719" "720"
## [721] "721" "722" "723" "724" "725" "726" "727" "728" "729"
## [730] "730" "731" "732" "733" "734" "735" "736" "737" "738"
## [739] "739" "740" "741" "742" "743" "744" "745" "746" "747"
## [748] "748" "749" "750" "751" "752" "753" "754" "755" "756"
## [757] "757" "758" "759" "760" "761" "762" "763" "764" "765"
## [766] "766" "767" "768" "769" "770" "771" "772" "773" "774"
## [775] "775" "776" "777" "778" "779" "780" "781" "782" "783"
## [784] "784" "785" "786" "787" "788" "789" "790" "791" "792"
## [793] "793" "794" "795" "796" "797" "798" "799" "800" "801"
## [802] "802" "803" "804" "805" "806" "807" "808" "809" "810"
## [811] "811" "812" "813" "814" "815" "816" "817" "818" "819"
## [820] "820" "821" "822" "823" "824" "825" "826" "827" "828"
## [829] "829" "830" "831" "832" "833" "834" "835" "836" "837"
## [838] "838" "839" "840" "841" "842" "843" "844" "845" "846"
## [847] "847" "848" "849" "850" "851" "852" "853" "854" "855"
## [856] "856" "857" "858" "859" "860" "861" "862" "863" "864"
## [865] "865" "866" "867" "868" "869" "870" "871" "872" "873"
## [874] "874" "875" "876" "877" "878" "879" "880" "881" "882"
## [883] "883" "884" "885" "886" "887" "888" "889" "890" "891"
## [892] "892" "893" "894" "895" "896" "897" "898" "899" "900"
## [901] "901" "902" "903" "904" "905" "906" "907" "908" "909"
## [910] "910" "911" "912" "913" "914" "915" "916" "917" "918"
## [919] "919" "920" "921" "922" "923" "924" "925" "926" "927"
## [928] "928" "929" "930" "931" "932" "933" "934" "935" "936"
## [937] "937" "938" "939" "940" "941" "942" "943" "944" "945"
## [946] "946" "947" "948" "949" "950" "951" "952" "953" "954"
## [955] "955" "956" "957" "958" "959" "960" "961" "962" "963"
## [964] "964" "965" "966" "967" "968" "969" "970" "971" "972"
## [973] "973" "974" "975" "976" "977" "978" "979" "980" "981"
## [982] "982" "983" "984" "985" "986" "987" "988" "989" "990"
## [991] "991" "992" "993" "994" "995" "996" "997" "998" "999"
## [1000] "1000" "1001" "1002" "1003" "1004" "1005" "1006" "1007" "1008"
## [1009] "1009" "1010" "1011" "1012" "1013" "1014" "1015" "1016" "1017"
## [1018] "1018" "1019" "1020" "1021" "1022" "1023" "1024" "1025" "1026"
## [1027] "1027" "1028" "1029" "1030" "1031" "1032" "1033" "1034" "1035"
## [1036] "1036" "1037" "1038" "1039" "1040" "1041" "1042" "1043" "1044"
## [1045] "1045" "1046" "1047" "1048" "1049" "1050" "1051" "1052" "1053"
## [1054] "1054" "1055" "1056" "1057" "1058" "1059" "1060" "1061" "1062"
## [1063] "1063" "1064" "1065" "1066" "1067" "1068" "1069" "1070" "1071"
## [1072] "1072" "1073" "1074" "1075" "1076" "1077" "1078" "1079" "1080"
## [1081] "1081" "1082" "1083" "1084" "1085" "1086" "1087" "1088" "1089"
## [1090] "1090" "1091" "1092" "1093" "1094" "1095" "1096" "1097" "1098"
## [1099] "1099" "1100" "1101" "1102" "1103" "1104" "1105" "1106" "1107"
## [1108] "1108" "1109" "1110" "1111" "1112" "1113" "1114" "1115" "1116"
## [1117] "1117" "1118" "1119" "1120" "1121" "1122" "1123" "1124" "1125"
## [1126] "1126" "1127" "1128" "1129" "1130" "1131" "1132" "1133" "1134"
## [1135] "1135" "1136" "1137" "1138" "1139" "1140" "1141" "1142" "1143"
## [1144] "1144" "1145" "1146" "1147" "1148" "1149" "1150" "1151" "1152"
## [1153] "1153" "1154" "1155" "1156" "1157" "1158" "1159" "1160" "1161"
## [1162] "1162" "1163" "1164" "1165" "1166" "1167" "1168" "1169" "1170"
## [1171] "1171" "1172" "1173" "1174" "1175" "1176" "1177" "1178" "1179"
## [1180] "1180" "1181" "1182" "1183" "1184" "1185" "1186" "1187" "1188"
## [1189] "1189" "1190" "1191" "1192" "1193" "1194" "1195" "1196" "1197"
## [1198] "1198" "1199" "1200" "1201" "1202" "1203" "1204" "1205" "1206"
## [1207] "1207" "1208" "1209" "1210" "1211" "1212" "1213" "1214" "1215"
## [1216] "1216" "1217" "1218" "1219" "1220" "1221" "1222" "1223" "1224"
## [1225] "1225" "1226" "1227" "1228" "1229" "1230" "1231" "1232" "1233"
## [1234] "1234" "1235" "1236" "1237" "1238" "1239" "1240" "1241" "1242"
## [1243] "1243" "1244" "1245" "1246" "1247" "1248" "1249" "1250" "1251"
## [1252] "1252" "1253" "1254" "1255" "1256" "1257" "1258" "1259" "1260"
## [1261] "1261" "1262" "1263" "1264" "1265" "1266" "1267" "1268" "1269"
## [1270] "1270" "1271" "1272" "1273" "1274" "1275" "1276" "1277" "1278"
## [1279] "1279" "1280" "1281" "1282" "1283" "1284" "1285" "1286" "1287"
## [1288] "1288" "1289" "1290" "1291" "1292" "1293" "1294" "1295" "1296"
## [1297] "1297" "1298" "1299" "1300" "1301" "1302" "1303" "1304" "1305"
## [1306] "1306" "1307" "1308" "1309" "1310" "1311" "1312" "1313" "1314"
## [1315] "1315" "1316" "1317" "1318" "1319" "1320" "1321" "1322" "1323"
## [1324] "1324" "1325" "1326" "1327" "1328" "1329" "1330" "1331" "1332"
## [1333] "1333" "1334" "1335" "1336" "1337" "1338" "1339" "1340" "1341"
## [1342] "1342" "1343" "1344" "1345" "1346" "1347" "1348" "1349" "1350"
## [1351] "1351" "1352" "1353" "1354" "1355" "1356" "1357" "1358" "1359"
## [1360] "1360" "1361" "1362" "1363" "1364" "1365" "1366" "1367" "1368"
## [1369] "1369" "1370" "1371" "1372" "1373" "1374" "1375" "1376" "1377"
## [1378] "1378" "1379" "1380" "1381" "1382" "1383" "1384" "1385" "1386"
## [1387] "1387" "1388" "1389" "1390" "1391" "1392" "1393" "1394" "1395"
## [1396] "1396" "1397" "1398" "1399" "1400" "1401" "1402" "1403" "1404"
## [1405] "1405" "1406" "1407" "1408" "1409" "1410" "1411" "1412" "1413"
## [1414] "1414" "1415" "1416" "1417" "1418" "1419" "1420" "1421" "1422"
## [1423] "1423" "1424" "1425" "1426" "1427" "1428" "1429" "1430" "1431"
## [1432] "1432" "1433" "1434" "1435" "1436" "1437" "1438" "1439" "1440"
## [1441] "1441" "1442" "1443" "1444" "1445" "1446" "1447" "1448" "1449"
## [1450] "1450" "1451" "1452" "1453" "1454" "1455" "1456" "1457" "1458"
## [1459] "1459" "1460" "1461" "1462" "1463" "1464" "1465" "1466" "1467"
## [1468] "1468" "1469" "1470" "1471" "1472" "1473" "1474" "1475" "1476"
## [1477] "1477" "1478" "1479" "1480" "1481" "1482" "1483" "1484" "1485"
## [1486] "1486" "1487" "1488" "1489" "1490" "1491" "1492" "1493" "1494"
## [1495] "1495" "1496" "1497" "1498" "1499" "1500" "1501" "1502" "1503"
## [1504] "1504" "1505" "1506" "1507" "1508" "1509" "1510" "1511" "1512"
## [1513] "1513" "1514" "1515" "1516" "1517" "1518" "1519" "1520" "1521"
## [1522] "1522" "1523" "1524" "1525" "1526" "1527" "1528" "1529" "1530"
## [1531] "1531" "1532" "1533" "1534" "1535" "1536" "1537" "1538" "1539"
## [1540] "1540" "1541" "1542" "1543" "1544" "1545" "1546" "1547" "1548"
## [1549] "1549" "1550" "1551" "1552" "1553" "1554" "1555" "1556" "1557"
## [1558] "1558" "1559" "1560" "1561" "1562" "1563" "1564" "1565" "1566"
## [1567] "1567" "1568" "1569" "1570" "1571" "1572" "1573" "1574" "1575"
## [1576] "1576" "1577" "1578" "1579" "1580" "1581" "1582" "1583" "1584"
## [1585] "1585" "1586" "1587" "1588" "1589" "1590" "1591" "1592" "1593"
## [1594] "1594" "1595" "1596" "1597" "1598" "1599" "1600" "1601" "1602"
## [1603] "1603" "1604" "1605" "1606" "1607" "1608" "1609" "1610" "1611"
## [1612] "1612" "1613" "1614" "1615" "1616" "1617" "1618" "1619" "1620"
## [1621] "1621" "1622" "1623" "1624" "1625" "1626" "1627" "1628" "1629"
## [1630] "1630" "1631" "1632" "1633" "1634" "1635" "1636" "1637" "1638"
## [1639] "1639" "1640" "1641" "1642" "1643" "1644" "1645" "1646" "1647"
## [1648] "1648" "1649" "1650" "1651" "1652" "1653" "1654" "1655" "1656"
## [1657] "1657" "1658" "1659" "1660" "1661" "1662" "1663" "1664" "1665"
## [1666] "1666" "1667" "1668" "1669" "1670" "1671" "1672" "1673" "1674"
## [1675] "1675" "1676" "1677" "1678" "1679" "1680" "1681" "1682" "1683"
## [1684] "1684" "1685" "1686" "1687" "1688" "1689" "1690" "1691" "1692"
## [1693] "1693" "1694" "1695" "1696" "1697" "1698" "1699" "1700" "1701"
## [1702] "1702" "1703" "1704" "1705" "1706" "1707" "1708" "1709" "1710"
## [1711] "1711" "1712" "1713" "1714" "1715" "1716" "1717" "1718" "1719"
## [1720] "1720" "1721" "1722" "1723" "1724" "1725" "1726" "1727" "1728"
## [1729] "1729" "1730" "1731" "1732" "1733" "1734" "1735" "1736" "1737"
## [1738] "1738" "1739" "1740" "1741" "1742" "1743" "1744" "1745" "1746"
## [1747] "1747" "1748" "1749" "1750" "1751" "1752" "1753" "1754" "1755"
## [1756] "1756" "1757" "1758" "1759" "1760" "1761" "1762" "1763" "1764"
## [1765] "1765" "1766" "1767" "1768" "1769" "1770" "1771" "1772" "1773"
## [1774] "1774" "1775" "1776" "1777" "1778" "1779" "1780" "1781" "1782"
## [1783] "1783" "1784" "1785" "1786" "1787" "1788" "1789" "1790" "1791"
## [1792] "1792" "1793" "1794" "1795" "1796" "1797" "1798" "1799" "1800"
## [1801] "1801" "1802" "1803" "1804" "1805" "1806" "1807" "1808" "1809"
## [1810] "1810" "1811" "1812" "1813" "1814" "1815" "1816" "1817" "1818"
## [1819] "1819" "1820" "1821" "1822" "1823" "1824" "1825" "1826" "1827"
## [1828] "1828" "1829" "1830" "1831" "1832" "1833" "1834" "1835" "1836"
## [1837] "1837" "1838" "1839" "1840" "1841" "1842" "1843" "1844" "1845"
## [1846] "1846" "1847" "1848" "1849" "1850" "1851" "1852" "1853" "1854"
## [1855] "1855" "1856" "1857" "1858" "1859" "1860" "1861" "1862" "1863"
## [1864] "1864" "1865" "1866" "1867" "1868" "1869" "1870" "1871" "1872"
## [1873] "1873" "1874" "1875" "1876" "1877" "1878" "1879" "1880" "1881"
## [1882] "1882" "1883" "1884" "1885" "1886" "1887" "1888" "1889" "1890"
## [1891] "1891" "1892" "1893" "1894" "1895" "1896" "1897" "1898" "1899"
## [1900] "1900" "1901" "1902" "1903" "1904" "1905" "1906" "1907" "1908"
## [1909] "1909" "1910" "1911" "1912" "1913" "1914" "1915" "1916" "1917"
## [1918] "1918" "1919" "1920" "1921" "1922" "1923" "1924" "1925" "1926"
## [1927] "1927" "1928" "1929" "1930" "1931" "1932" "1933" "1934" "1935"
## [1936] "1936" "1937" "1938" "1939" "1940" "1941" "1942" "1943" "1944"
## [1945] "1945" "1946" "1947" "1948" "1949" "1950" "1951" "1952" "1953"
## [1954] "1954" "1955" "1956" "1957" "1958" "1959" "1960" "1961" "1962"
## [1963] "1963" "1964" "1965" "1966" "1967" "1968" "1969" "1970" "1971"
## [1972] "1972" "1973" "1974" "1975" "1976" "1977" "1978" "1979" "1980"
## [1981] "1981" "1982" "1983" "1984" "1985" "1986" "1987" "1988" "1989"
## [1990] "1990" "1991" "1992" "1993" "1994" "1995" "1996" "1997" "1998"
## [1999] "1999" "2000" "2001" "2002" "2003" "2004" "2005" "2006" "2007"
## [2008] "2008" "2009" "2010" "2011" "2012" "2013" "2014" "2015" "2016"
## [2017] "2017" "2018" "2019" "2020" "2021" "2022" "2023" "2024" "2025"
## [2026] "2026" "2027" "2028" "2029" "2030" "2031" "2032" "2033" "2034"
## [2035] "2035" "2036" "2037" "2038" "2039" "2040" "2041" "2042" "2043"
## [2044] "2044" "2045" "2046" "2047" "2048" "2049" "2050" "2051" "2052"
## [2053] "2053" "2054" "2055" "2056" "2057" "2058" "2059" "2060" "2061"
## [2062] "2062" "2063" "2064" "2065" "2066" "2067" "2068" "2069" "2070"
## [2071] "2071" "2072" "2073" "2074" "2075" "2076" "2077" "2078" "2079"
## [2080] "2080" "2081" "2082" "2083" "2084" "2085" "2086" "2087" "2088"
## [2089] "2089" "2090" "2091" "2092" "2093" "2094" "2095" "2096" "2097"
## [2098] "2098" "2099" "2100" "2101" "2102" "2103" "2104" "2105" "2106"
## [2107] "2107" "2108" "2109" "2110" "2111" "2112" "2113" "2114" "2115"
## [2116] "2116" "2117" "2118" "2119" "2120" "2121" "2122" "2123" "2124"
## [2125] "2125" "2126" "2127" "2128" "2129" "2130" "2131" "2132" "2133"
## [2134] "2134" "2135" "2136" "2137" "2138" "2139" "2140" "2141" "2142"
## [2143] "2143" "2144" "2145" "2146" "2147" "2148" "2149" "2150" "2151"
## [2152] "2152" "2153" "2154" "2155" "2156" "2157" "2158" "2159" "2160"
## [2161] "2161" "2162" "2163" "2164" "2165" "2166" "2167" "2168" "2169"
## [2170] "2170" "2171" "2172" "2173" "2174" "2175" "2176" "2177" "2178"
## [2179] "2179" "2180" "2181" "2182" "2183" "2184" "2185" "2186" "2187"
## [2188] "2188" "2189" "2190" "2191" "2192" "2193" "2194" "2195" "2196"
## [2197] "2197" "2198" "2199" "2200" "2201" "2202" "2203" "2204" "2205"
## [2206] "2206" "2207" "2208" "2209" "2210" "2211" "2212" "2213" "2214"
## [2215] "2215" "2216" "2217" "2218" "2219" "2220" "2221" "2222" "2223"
## [2224] "2224" "2225" "2226" "2227" "2228" "2229" "2230" "2231" "2232"
## [2233] "2233" "2234" "2235" "2236" "2237" "2238" "2239" "2240" "2241"
## [2242] "2242" "2243" "2244" "2245" "2246" "2247" "2248" "2249" "2250"
## [2251] "2251" "2252" "2253" "2254" "2255" "2256" "2257" "2258" "2259"
## [2260] "2260" "2261" "2262" "2263" "2264" "2265" "2266" "2267" "2268"
## [2269] "2269" "2270" "2271" "2272" "2273" "2274" "2275" "2276" "2277"
## [2278] "2278" "2279" "2280" "2281" "2282" "2283" "2284" "2285" "2286"
## [2287] "2287" "2288" "2289" "2290" "2291" "2292" "2293" "2294" "2295"
## [2296] "2296" "2297" "2298" "2299" "2300" "2301" "2302" "2303" "2304"
## [2305] "2305" "2306" "2307" "2308" "2309" "2310" "2311" "2312" "2313"
## [2314] "2314" "2315" "2316" "2317" "2318" "2319" "2320" "2321" "2322"
## [2323] "2323" "2324" "2325" "2326" "2327" "2328" "2329" "2330" "2331"
## [2332] "2332" "2333" "2334" "2335" "2336" "2337" "2338" "2339" "2340"
## [2341] "2341" "2342" "2343" "2344" "2345" "2346" "2347" "2348" "2349"
## [2350] "2350" "2351" "2352" "2353" "2354" "2355" "2356" "2357" "2358"
## [2359] "2359" "2360" "2361" "2362" "2363" "2364" "2365" "2366" "2367"
## [2368] "2368" "2369" "2370" "2371" "2372" "2373" "2374" "2375" "2376"
## [2377] "2377" "2378" "2379" "2380" "2381" "2382" "2383" "2384" "2385"
## [2386] "2386" "2387" "2388" "2389" "2390" "2391" "2392" "2393" "2394"
## [2395] "2395" "2396" "2397" "2398" "2399" "2400" "2401" "2402" "2403"
## [2404] "2404" "2405" "2406" "2407" "2408" "2409" "2410" "2411" "2412"
## [2413] "2413" "2414" "2415" "2416" "2417" "2418" "2419" "2420" "2421"
## [2422] "2422" "2423" "2424" "2425" "2426" "2427" "2428" "2429" "2430"
## [2431] "2431" "2432" "2433" "2434" "2435" "2436" "2437" "2438" "2439"
## [2440] "2440" "2441" "2442" "2443" "2444" "2445" "2446" "2447" "2448"
## [2449] "2449" "2450" "2451" "2452" "2453" "2454" "2455" "2456" "2457"
## [2458] "2458" "2459" "2460" "2461" "2462" "2463" "2464" "2465" "2466"
## [2467] "2467" "2468" "2469" "2470" "2471" "2472" "2473" "2474" "2475"
## [2476] "2476" "2477" "2478" "2479" "2480" "2481" "2482" "2483" "2484"
## [2485] "2485" "2486" "2487" "2488" "2489" "2490" "2491" "2492" "2493"
## [2494] "2494" "2495" "2496" "2497" "2498" "2499" "2500" "2501" "2502"
## [2503] "2503" "2504" "2505" "2506" "2507" "2508" "2509" "2510" "2511"
## [2512] "2512" "2513" "2514" "2515" "2516" "2517" "2518" "2519" "2520"
## [2521] "2521" "2522" "2523" "2524" "2525" "2526" "2527" "2528" "2529"
## [2530] "2530" "2531" "2532" "2533" "2534" "2535" "2536" "2537" "2538"
## [2539] "2539" "2540" "2541" "2542" "2543" "2544" "2545" "2546" "2547"
## [2548] "2548" "2549" "2550" "2551" "2552" "2553" "2554" "2555" "2556"
## [2557] "2557" "2558" "2559" "2560" "2561" "2562" "2563" "2564" "2565"
## [2566] "2566" "2567" "2568" "2569" "2570" "2571" "2572" "2573" "2574"
## [2575] "2575" "2576" "2577" "2578" "2579" "2580" "2581" "2582" "2583"
## [2584] "2584" "2585" "2586" "2587" "2588" "2589" "2590" "2591" "2592"
## [2593] "2593" "2594" "2595" "2596" "2597" "2598" "2599" "2600" "2601"
## [2602] "2602" "2603" "2604" "2605" "2606" "2607" "2608" "2609" "2610"
## [2611] "2611" "2612" "2613" "2614" "2615" "2616" "2617" "2618" "2619"
## [2620] "2620" "2621" "2622" "2623" "2624" "2625" "2626" "2627" "2628"
## [2629] "2629" "2630" "2631" "2632" "2633" "2634" "2635" "2636" "2637"
## [2638] "2638" "2639" "2640" "2641" "2642" "2643" "2644" "2645" "2646"
## [2647] "2647" "2648" "2649" "2650" "2651" "2652" "2653" "2654" "2655"
## [2656] "2656" "2657" "2658" "2659" "2660" "2661" "2662" "2663" "2664"
## [2665] "2665" "2666" "2667" "2668" "2669" "2670" "2671" "2672" "2673"
## [2674] "2674" "2675" "2676" "2677" "2678" "2679" "2680" "2681" "2682"
## [2683] "2683" "2684" "2685" "2686" "2687" "2688" "2689" "2690" "2691"
## [2692] "2692" "2693" "2694" "2695" "2696" "2697" "2698" "2699" "2700"
## [2701] "2701" "2702" "2703" "2704" "2705" "2706" "2707" "2708" "2709"
## [2710] "2710" "2711" "2712" "2713" "2714" "2715" "2716" "2717" "2718"
## [2719] "2719" "2720" "2721" "2722" "2723" "2724" "2725" "2726" "2727"
## [2728] "2728" "2729" "2730" "2731" "2732" "2733" "2734" "2735" "2736"
## [2737] "2737" "2738" "2739" "2740" "2741" "2742" "2743" "2744" "2745"
## [2746] "2746" "2747" "2748" "2749" "2750" "2751" "2752" "2753" "2754"
## [2755] "2755" "2756" "2757" "2758" "2759" "2760" "2761" "2762" "2763"
## [2764] "2764" "2765" "2766" "2767" "2768" "2769" "2770" "2771" "2772"
## [2773] "2773" "2774" "2775" "2776" "2777" "2778" "2779" "2780" "2781"
## [2782] "2782" "2783" "2784" "2785" "2786" "2787" "2788" "2789" "2790"
## [2791] "2791" "2792" "2793" "2794" "2795" "2796" "2797" "2798" "2799"
## [2800] "2800" "2801" "2802" "2803" "2804" "2805" "2806" "2807" "2808"
## [2809] "2809" "2810" "2811" "2812" "2813" "2814" "2815" "2816" "2817"
## [2818] "2818" "2819" "2820" "2821" "2822" "2823" "2824" "2825" "2826"
## [2827] "2827" "2828" "2829" "2830" "2831" "2832" "2833" "2834" "2835"
## [2836] "2836" "2837" "2838" "2839" "2840" "2841" "2842" "2843" "2844"
## [2845] "2845" "2846" "2847" "2848" "2849" "2850" "2851" "2852" "2853"
## [2854] "2854" "2855" "2856" "2857" "2858" "2859" "2860" "2861" "2862"
## [2863] "2863" "2864" "2865" "2866" "2867" "2868" "2869" "2870" "2871"
## [2872] "2872" "2873" "2874" "2875" "2876" "2877" "2878" "2879" "2880"
## [2881] "2881" "2882" "2883" "2884" "2885" "2886" "2887" "2888" "2889"
## [2890] "2890" "2891" "2892" "2893" "2894" "2895" "2896" "2897" "2898"
## [2899] "2899" "2900" "2901" "2902" "2903" "2904" "2905" "2906" "2907"
## [2908] "2908" "2909" "2910" "2911" "2912" "2913" "2914" "2915" "2916"
## [2917] "2917" "2918" "2919" "2920" "2921" "2922" "2923" "2924" "2925"
## [2926] "2926" "2927" "2928" "2929" "2930" "2931" "2932" "2933" "2934"
## [2935] "2935" "2936" "2937" "2938" "2939" "2940" "2941" "2942" "2943"
## [2944] "2944" "2945" "2946" "2947" "2948" "2949" "2950" "2951" "2952"
## [2953] "2953" "2954" "2955" "2956" "2957" "2958" "2959" "2960" "2961"
## [2962] "2962" "2963" "2964" "2965" "2966" "2967" "2968" "2969" "2970"
## [2971] "2971" "2972" "2973" "2974" "2975" "2976" "2977" "2978" "2979"
## [2980] "2980" "2981" "2982" "2983" "2984" "2985" "2986" "2987" "2988"
## [2989] "2989" "2990" "2991" "2992" "2993" "2994" "2995" "2996" "2997"
## [2998] "2998" "2999" "3000" "3001" "3002" "3003" "3004" "3005" "3006"
## [3007] "3007" "3008" "3009" "3010" "3011" "3012" "3013" "3014" "3015"
## [3016] "3016" "3017" "3018" "3019" "3020" "3021" "3022" "3023" "3024"
## [3025] "3025" "3026" "3027" "3028" "3029" "3030" "3031" "3032" "3033"
## [3034] "3034" "3035" "3036" "3037" "3038" "3039" "3040" "3041" "3042"
## [3043] "3043" "3044" "3045" "3046" "3047" "3048" "3049" "3050" "3051"
## [3052] "3052" "3053" "3054" "3055" "3056" "3057" "3058" "3059" "3060"
## [3061] "3061" "3062" "3063" "3064" "3065" "3066" "3067" "3068" "3069"
## [3070] "3070" "3071" "3072" "3073" "3074" "3075" "3076" "3077" "3078"
## [3079] "3079" "3080" "3081" "3082" "3083" "3084" "3085" "3086" "3087"
## [3088] "3088" "3089" "3090" "3091" "3092" "3093" "3094" "3095" "3096"
## [3097] "3097" "3098" "3099" "3100" "3101" "3102" "3103" "3104" "3105"
## [3106] "3106" "3107" "3108" "3109" "3110" "3111" "3112" "3113" "3114"
## [3115] "3115" "3116" "3117" "3118" "3119" "3120" "3121" "3122" "3123"
## [3124] "3124" "3125" "3126" "3127" "3128" "3129" "3130" "3131" "3132"
## [3133] "3133" "3134" "3135" "3136" "3137" "3138" "3139" "3140" "3141"
## [3142] "3142" "3143" "3144" "3145" "3146" "3147" "3148" "3149" "3150"
## [3151] "3151" "3152" "3153" "3154" "3155" "3156" "3157" "3158" "3159"
## [3160] "3160" "3161" "3162" "3163" "3164" "3165" "3166" "3167" "3168"
## [3169] "3169" "3170" "3171" "3172" "3173" "3174" "3175" "3176" "3177"
## [3178] "3178" "3179" "3180" "3181" "3182" "3183" "3184" "3185" "3186"
## [3187] "3187" "3188" "3189" "3190" "3191" "3192" "3193" "3194" "3195"
## [3196] "3196" "3197" "3198" "3199" "3200" "3201" "3202" "3203" "3204"
## [3205] "3205" "3206" "3207" "3208" "3209" "3210" "3211" "3212" "3213"
## [3214] "3214" "3215" "3216" "3217" "3218" "3219" "3220" "3221" "3222"
## [3223] "3223" "3224" "3225" "3226" "3227" "3228" "3229" "3230" "3231"
## [3232] "3232" "3233" "3234" "3235" "3236" "3237" "3238" "3239" "3240"
## [3241] "3241" "3242" "3243" "3244" "3245" "3246" "3247" "3248" "3249"
## [3250] "3250" "3251" "3252" "3253" "3254" "3255" "3256" "3257" "3258"
## [3259] "3259" "3260" "3261" "3262" "3263" "3264" "3265" "3266" "3267"
## [3268] "3268" "3269" "3270" "3271" "3272" "3273" "3274" "3275" "3276"
## [3277] "3277" "3278" "3279" "3280" "3281" "3282" "3283" "3284" "3285"
## [3286] "3286" "3287" "3288" "3289" "3290" "3291" "3292" "3293" "3294"
## [3295] "3295" "3296" "3297" "3298" "3299" "3300" "3301" "3302" "3303"
## [3304] "3304" "3305" "3306" "3307" "3308" "3309" "3310" "3311" "3312"
## [3313] "3313" "3314" "3315" "3316" "3317" "3318" "3319" "3320" "3321"
## [3322] "3322" "3323" "3324" "3325" "3326" "3327" "3328" "3329" "3330"
## [3331] "3331" "3332" "3333" "3334" "3335" "3336" "3337" "3338" "3339"
## [3340] "3340" "3341" "3342" "3343" "3344" "3345" "3346" "3347" "3348"
## [3349] "3349" "3350" "3351" "3352" "3353" "3354" "3355" "3356" "3357"
## [3358] "3358" "3359" "3360" "3361" "3362" "3363" "3364" "3365" "3366"
## [3367] "3367" "3368" "3369" "3370" "3371" "3372" "3373" "3374" "3375"
## [3376] "3376" "3377" "3378" "3379" "3380" "3381" "3382" "3383" "3384"
## [3385] "3385" "3386" "3387" "3388" "3389" "3390" "3391" "3392" "3393"
## [3394] "3394" "3395" "3396" "3397" "3398" "3399" "3400" "3401" "3402"
## [3403] "3403" "3404" "3405" "3406" "3407" "3408" "3409" "3410" "3411"
## [3412] "3412" "3413" "3414" "3415" "3416" "3417" "3418" "3419" "3420"
## [3421] "3421" "3422" "3423" "3424" "3425" "3426" "3427" "3428" "3429"
## [3430] "3430" "3431" "3432" "3433" "3434" "3435" "3436" "3437" "3438"
## [3439] "3439" "3440" "3441" "3442" "3443" "3444" "3445" "3446" "3447"
## [3448] "3448" "3449" "3450" "3451" "3452" "3453" "3454" "3455" "3456"
## [3457] "3457" "3458" "3459" "3460" "3461" "3462" "3463" "3464" "3465"
## [3466] "3466" "3467" "3468" "3469" "3470" "3471" "3472" "3473" "3474"
## [3475] "3475" "3476" "3477" "3478" "3479" "3480" "3481" "3482" "3483"
## [3484] "3484" "3485" "3486" "3487" "3488" "3489" "3490" "3491" "3492"
## [3493] "3493" "3494" "3495" "3496" "3497" "3498" "3499" "3500" "3501"
## [3502] "3502" "3503" "3504" "3505" "3506" "3507" "3508" "3509" "3510"
## [3511] "3511" "3512" "3513" "3514" "3515" "3516" "3517" "3518" "3519"
## [3520] "3520" "3521" "3522" "3523" "3524" "3525" "3526" "3527" "3528"
## [3529] "3529" "3530" "3531" "3532" "3533" "3534" "3535" "3536" "3537"
## [3538] "3538" "3539" "3540" "3541" "3542" "3543" "3544" "3545" "3546"
## [3547] "3547" "3548" "3549" "3550" "3551" "3552" "3553" "3554" "3555"
## [3556] "3556" "3557" "3558" "3559" "3560" "3561" "3562" "3563" "3564"
## [3565] "3565" "3566" "3567" "3568" "3569" "3570" "3571" "3572" "3573"
## [3574] "3574" "3575" "3576" "3577" "3578" "3579" "3580" "3581" "3582"
## [3583] "3583" "3584" "3585" "3586" "3587" "3588" "3589" "3590" "3591"
## [3592] "3592" "3593" "3594" "3595" "3596" "3597" "3598" "3599" "3600"
## [3601] "3601" "3602" "3603" "3604" "3605" "3606" "3607" "3608" "3609"
## [3610] "3610" "3611" "3612" "3613" "3614" "3615" "3616" "3617" "3618"
## [3619] "3619" "3620" "3621" "3622" "3623" "3624" "3625" "3626" "3627"
## [3628] "3628" "3629" "3630" "3631" "3632" "3633" "3634" "3635" "3636"
## [3637] "3637" "3638" "3639" "3640" "3641" "3642" "3643" "3644" "3645"
## [3646] "3646" "3647" "3648" "3649" "3650" "3651" "3652" "3653" "3654"
## [3655] "3655" "3656" "3657" "3658" "3659" "3660" "3661" "3662" "3663"
## [3664] "3664" "3665" "3666" "3667" "3668" "3669" "3670" "3671" "3672"
## [3673] "3673" "3674" "3675" "3676" "3677" "3678" "3679" "3680" "3681"
## [3682] "3682" "3683" "3684" "3685" "3686" "3687" "3688" "3689" "3690"
## [3691] "3691" "3692" "3693" "3694" "3695" "3696" "3697" "3698" "3699"
## [3700] "3700" "3701" "3702" "3703" "3704" "3705" "3706" "3707" "3708"
## [3709] "3709" "3710" "3711" "3712" "3713" "3714" "3715" "3716" "3717"
## [3718] "3718" "3719" "3720" "3721" "3722" "3723" "3724" "3725" "3726"
## [3727] "3727" "3728" "3729" "3730" "3731" "3732" "3733" "3734" "3735"
## [3736] "3736" "3737" "3738" "3739" "3740" "3741" "3742" "3743" "3744"
## [3745] "3745" "3746" "3747" "3748" "3749" "3750" "3751" "3752" "3753"
## [3754] "3754" "3755" "3756" "3757" "3758" "3759" "3760" "3761" "3762"
## [3763] "3763" "3764" "3765" "3766" "3767" "3768" "3769" "3770" "3771"
## [3772] "3772" "3773" "3774" "3775" "3776" "3777" "3778" "3779" "3780"
## [3781] "3781" "3782" "3783" "3784" "3785" "3786" "3787" "3788" "3789"
## [3790] "3790" "3791" "3792" "3793" "3794" "3795" "3796" "3797" "3798"
## [3799] "3799" "3800" "3801" "3802" "3803" "3804" "3805" "3806" "3807"
## [3808] "3808" "3809" "3810" "3811" "3812" "3813" "3814" "3815" "3816"
## [3817] "3817" "3818" "3819" "3820" "3821" "3822" "3823" "3824" "3825"
## [3826] "3826" "3827" "3828" "3829" "3830" "3831" "3832" "3833" "3834"
## [3835] "3835" "3836" "3837" "3838" "3839" "3840" "3841" "3842" "3843"
## [3844] "3844" "3845" "3846" "3847" "3848" "3849" "3850" "3851" "3852"
## [3853] "3853" "3854" "3855" "3856" "3857" "3858" "3859" "3860" "3861"
## [3862] "3862" "3863" "3864" "3865" "3866" "3867" "3868" "3869" "3870"
## [3871] "3871" "3872" "3873" "3874" "3875" "3876" "3877" "3878" "3879"
## [3880] "3880" "3881" "3882" "3883" "3884" "3885" "3886" "3887" "3888"
## [3889] "3889" "3890" "3891" "3892" "3893" "3894" "3895" "3896" "3897"
## [3898] "3898" "3899" "3900" "3901" "3902" "3903" "3904" "3905" "3906"
## [3907] "3907" "3908" "3909" "3910" "3911" "3912" "3913" "3914" "3915"
## [3916] "3916" "3917" "3918" "3919" "3920" "3921" "3922" "3923" "3924"
## [3925] "3925" "3926" "3927" "3928" "3929" "3930" "3931" "3932" "3933"
## [3934] "3934" "3935" "3936" "3937" "3938" "3939" "3940" "3941" "3942"
## [3943] "3943" "3944" "3945" "3946" "3947" "3948" "3949" "3950" "3951"
## [3952] "3952" "3953" "3954" "3955" "3956" "3957" "3958" "3959" "3960"
## [3961] "3961" "3962" "3963" "3964" "3965" "3966" "3967" "3968" "3969"
## [3970] "3970" "3971" "3972" "3973" "3974" "3975" "3976" "3977" "3978"
## [3979] "3979" "3980" "3981" "3982" "3983" "3984" "3985" "3986" "3987"
## [3988] "3988" "3989" "3990" "3991" "3992" "3993" "3994" "3995" "3996"
## [3997] "3997" "3998" "3999" "4000" "4001" "4002" "4003" "4004" "4005"
## [4006] "4006" "4007" "4008" "4009" "4010" "4011" "4012" "4013" "4014"
## [4015] "4015" "4016" "4017" "4018" "4019" "4020" "4021" "4022" "4023"
## [4024] "4024" "4025" "4026" "4027" "4028" "4029" "4030" "4031" "4032"
## [4033] "4033" "4034" "4035" "4036" "4037" "4038" "4039" "4040" "4041"
## [4042] "4042" "4043" "4044" "4045" "4046" "4047" "4048" "4049" "4050"
## [4051] "4051" "4052" "4053" "4054" "4055" "4056" "4057" "4058" "4059"
## [4060] "4060" "4061" "4062" "4063" "4064" "4065" "4066" "4067" "4068"
## [4069] "4069" "4070" "4071" "4072" "4073" "4074" "4075" "4076" "4077"
## [4078] "4078" "4079" "4080" "4081" "4082" "4083" "4084" "4085" "4086"
## [4087] "4087" "4088" "4089" "4090" "4091" "4092" "4093" "4094" "4095"
## [4096] "4096" "4097" "4098" "4099" "4100" "4101" "4102" "4103" "4104"
## [4105] "4105" "4106" "4107" "4108" "4109" "4110" "4111" "4112" "4113"
## [4114] "4114" "4115" "4116" "4117" "4118" "4119" "4120" "4121" "4122"
## [4123] "4123" "4124" "4125" "4126" "4127" "4128" "4129" "4130" "4131"
## [4132] "4132" "4133" "4134" "4135" "4136" "4137" "4138" "4139" "4140"
## [4141] "4141" "4142" "4143" "4144" "4145" "4146" "4147" "4148" "4149"
## [4150] "4150" "4151" "4152" "4153" "4154" "4155" "4156" "4157" "4158"
## [4159] "4159" "4160" "4161" "4162" "4163" "4164" "4165" "4166" "4167"
## [4168] "4168" "4169" "4170" "4171" "4172" "4173" "4174" "4175" "4176"
## [4177] "4177" "4178" "4179" "4180" "4181" "4182" "4183" "4184" "4185"
## [4186] "4186" "4187" "4188" "4189" "4190" "4191" "4192" "4193" "4194"
## [4195] "4195" "4196" "4197" "4198" "4199" "4200" "4201" "4202" "4203"
## [4204] "4204" "4205" "4206" "4207" "4208" "4209" "4210" "4211" "4212"
## [4213] "4213" "4214" "4215" "4216" "4217" "4218" "4219" "4220" "4221"
## [4222] "4222" "4223" "4224" "4225" "4226" "4227" "4228" "4229" "4230"
## [4231] "4231" "4232" "4233" "4234" "4235" "4236" "4237" "4238" "4239"
## [4240] "4240" "4241" "4242" "4243" "4244" "4245" "4246" "4247" "4248"
## [4249] "4249" "4250" "4251" "4252" "4253" "4254" "4255" "4256" "4257"
## [4258] "4258" "4259" "4260" "4261" "4262" "4263" "4264" "4265" "4266"
## [4267] "4267" "4268" "4269" "4270" "4271" "4272" "4273" "4274" "4275"
## [4276] "4276" "4277" "4278" "4279" "4280" "4281" "4282" "4283" "4284"
## [4285] "4285" "4286" "4287" "4288" "4289" "4290" "4291" "4292" "4293"
## [4294] "4294" "4295" "4296" "4297" "4298" "4299" "4300" "4301" "4302"
## [4303] "4303" "4304" "4305" "4306" "4307" "4308" "4309" "4310" "4311"
## [4312] "4312" "4313" "4314" "4315" "4316" "4317" "4318" "4319" "4320"
## [4321] "4321" "4322" "4323" "4324" "4325" "4326" "4327" "4328" "4329"
## [4330] "4330" "4331" "4332" "4333" "4334" "4335" "4336" "4337" "4338"
## [4339] "4339" "4340" "4341" "4342" "4343" "4344" "4345" "4346" "4347"
## [4348] "4348" "4349" "4350" "4351" "4352" "4353" "4354" "4355" "4356"
## [4357] "4357" "4358" "4359" "4360" "4361" "4362" "4363" "4364" "4365"
## [4366] "4366" "4367" "4368" "4369" "4370" "4371" "4372" "4373" "4374"
## [4375] "4375" "4376" "4377" "4378" "4379" "4380" "4381" "4382" "4383"
## [4384] "4384" "4385" "4386" "4387" "4388" "4389" "4390" "4391" "4392"
## [4393] "4393" "4394" "4395" "4396" "4397" "4398" "4399" "4400" "4401"
## [4402] "4402" "4403" "4404" "4405" "4406" "4407" "4408" "4409" "4410"
## [4411] "4411" "4412" "4413" "4414" "4415" "4416" "4417" "4418" "4419"
## [4420] "4420" "4421" "4422" "4423" "4424" "4425" "4426" "4427" "4428"
## [4429] "4429" "4430" "4431" "4432" "4433" "4434" "4435" "4436" "4437"
## [4438] "4438" "4439" "4440" "4441" "4442" "4443" "4444" "4445" "4446"
## [4447] "4447" "4448" "4449" "4450" "4451" "4452" "4453" "4454" "4455"
## [4456] "4456" "4457" "4458" "4459" "4460" "4461" "4462" "4463" "4464"
## [4465] "4465" "4466" "4467" "4468" "4469" "4470" "4471" "4472" "4473"
## [4474] "4474" "4475" "4476" "4477" "4478" "4479" "4480" "4481" "4482"
## [4483] "4483" "4484" "4485" "4486" "4487" "4488" "4489" "4490" "4491"
## [4492] "4492" "4493" "4494" "4495" "4496" "4497" "4498" "4499" "4500"
## [4501] "4501" "4502" "4503" "4504" "4505" "4506" "4507" "4508" "4509"
## [4510] "4510" "4511" "4512" "4513" "4514" "4515" "4516" "4517" "4518"
## [4519] "4519" "4520" "4521" "4522" "4523" "4524" "4525" "4526" "4527"
## [4528] "4528" "4529" "4530" "4531" "4532" "4533" "4534" "4535" "4536"
## [4537] "4537" "4538" "4539" "4540" "4541" "4542" "4543" "4544" "4545"
## [4546] "4546" "4547" "4548" "4549" "4550" "4551" "4552" "4553" "4554"
## [4555] "4555" "4556" "4557" "4558" "4559" "4560" "4561" "4562" "4563"
## [4564] "4564" "4565" "4566" "4567" "4568" "4569" "4570" "4571" "4572"
## [4573] "4573" "4574" "4575" "4576" "4577" "4578" "4579" "4580" "4581"
## [4582] "4582" "4583" "4584" "4585" "4586" "4587" "4588" "4589" "4590"
## [4591] "4591" "4592" "4593" "4594" "4595" "4596" "4597" "4598" "4599"
## [4600] "4600" "4601" "4602" "4603" "4604" "4605" "4606" "4607" "4608"
## [4609] "4609" "4610" "4611" "4612" "4613" "4614" "4615" "4616" "4617"
## [4618] "4618" "4619" "4620" "4621" "4622" "4623" "4624" "4625" "4626"
## [4627] "4627" "4628" "4629" "4630" "4631" "4632" "4633" "4634" "4635"
## [4636] "4636" "4637" "4638" "4639" "4640" "4641" "4642" "4643" "4644"
## [4645] "4645" "4646" "4647" "4648" "4649" "4650" "4651" "4652" "4653"
## [4654] "4654" "4655" "4656" "4657" "4658" "4659" "4660" "4661" "4662"
## [4663] "4663" "4664" "4665" "4666" "4667" "4668" "4669" "4670" "4671"
## [4672] "4672" "4673" "4674" "4675" "4676" "4677" "4678" "4679" "4680"
## [4681] "4681" "4682" "4683" "4684" "4685" "4686" "4687" "4688" "4689"
## [4690] "4690" "4691" "4692" "4693" "4694" "4695" "4696" "4697" "4698"
## [4699] "4699" "4700" "4701" "4702" "4703" "4704" "4705" "4706" "4707"
## [4708] "4708" "4709" "4710" "4711" "4712" "4713" "4714" "4715" "4716"
## [4717] "4717" "4718" "4719" "4720" "4721" "4722" "4723" "4724" "4725"
## [4726] "4726" "4727" "4728" "4729" "4730" "4731" "4732" "4733" "4734"
## [4735] "4735" "4736" "4737" "4738" "4739" "4740" "4741" "4742" "4743"
## [4744] "4744" "4745" "4746" "4747" "4748" "4749" "4750" "4751" "4752"
## [4753] "4753" "4754" "4755" "4756" "4757" "4758" "4759" "4760" "4761"
## [4762] "4762" "4763" "4764" "4765" "4766" "4767" "4768" "4769" "4770"
## [4771] "4771" "4772" "4773" "4774" "4775" "4776" "4777" "4778" "4779"
## [4780] "4780" "4781" "4782" "4783" "4784" "4785" "4786" "4787" "4788"
## [4789] "4789" "4790" "4791" "4792" "4793" "4794" "4795" "4796" "4797"
## [4798] "4798" "4799" "4800" "4801" "4802" "4803" "4804" "4805" "4806"
## [4807] "4807" "4808" "4809" "4810" "4811" "4812" "4813" "4814" "4815"
## [4816] "4816" "4817" "4818" "4819" "4820" "4821" "4822" "4823" "4824"
## [4825] "4825" "4826" "4827" "4828" "4829" "4830" "4831" "4832" "4833"
## [4834] "4834" "4835" "4836" "4837" "4838" "4839" "4840" "4841" "4842"
## [4843] "4843" "4844" "4845" "4846" "4847" "4848" "4849" "4850" "4851"
## [4852] "4852" "4853" "4854" "4855" "4856" "4857" "4858" "4859" "4860"
## [4861] "4861" "4862" "4863" "4864" "4865" "4866" "4867" "4868" "4869"
## [4870] "4870" "4871" "4872" "4873" "4874" "4875" "4876" "4877" "4878"
## [4879] "4879" "4880" "4881" "4882" "4883" "4884" "4885" "4886" "4887"
## [4888] "4888" "4889" "4890" "4891" "4892" "4893" "4894" "4895" "4896"
## [4897] "4897" "4898" "4899" "4900" "4901" "4902" "4903" "4904" "4905"
## [4906] "4906" "4907" "4908" "4909" "4910" "4911" "4912" "4913" "4914"
## [4915] "4915" "4916" "4917" "4918" "4919" "4920" "4921" "4922" "4923"
## [4924] "4924" "4925" "4926" "4927" "4928" "4929" "4930" "4931" "4932"
## [4933] "4933" "4934" "4935" "4936" "4937" "4938" "4939" "4940" "4941"
## [4942] "4942" "4943" "4944" "4945" "4946" "4947" "4948" "4949" "4950"
## [4951] "4951" "4952" "4953" "4954" "4955" "4956" "4957" "4958" "4959"
## [4960] "4960" "4961" "4962" "4963" "4964" "4965" "4966" "4967" "4968"
## [4969] "4969" "4970" "4971" "4972" "4973" "4974" "4975" "4976" "4977"
## [4978] "4978" "4979" "4980" "4981" "4982" "4983" "4984" "4985" "4986"
## [4987] "4987" "4988" "4989" "4990" "4991" "4992" "4993" "4994" "4995"
## [4996] "4996" "4997" "4998" "4999" "5000" "5001" "5002" "5003" "5004"
## [5005] "5005" "5006" "5007" "5008" "5009" "5010" "5011" "5012" "5013"
## [5014] "5014" "5015" "5016" "5017" "5018" "5019" "5020" "5021" "5022"
## [5023] "5023" "5024" "5025" "5026" "5027" "5028" "5029" "5030" "5031"
## [5032] "5032" "5033" "5034" "5035" "5036" "5037" "5038" "5039" "5040"
## [5041] "5041" "5042" "5043" "5044" "5045" "5046" "5047" "5048" "5049"
## [5050] "5050" "5051" "5052" "5053" "5054" "5055" "5056" "5057" "5058"
## [5059] "5059" "5060" "5061" "5062" "5063" "5064" "5065" "5066" "5067"
## [5068] "5068" "5069" "5070" "5071" "5072" "5073" "5074" "5075" "5076"
## [5077] "5077" "5078" "5079" "5080" "5081" "5082" "5083" "5084" "5085"
## [5086] "5086" "5087" "5088" "5089" "5090" "5091" "5092" "5093" "5094"
## [5095] "5095" "5096" "5097" "5098" "5099" "5100" "5101" "5102" "5103"
## [5104] "5104" "5105" "5106" "5107" "5108" "5109" "5110" "5111" "5112"
## [5113] "5113" "5114" "5115" "5116" "5117" "5118" "5119" "5120" "5121"
## [5122] "5122" "5123" "5124" "5125" "5126" "5127" "5128" "5129" "5130"
## [5131] "5131" "5132" "5133" "5134" "5135" "5136" "5137" "5138" "5139"
## [5140] "5140" "5141" "5142" "5143" "5144" "5145" "5146" "5147" "5148"
## [5149] "5149" "5150" "5151" "5152" "5153" "5154" "5155" "5156" "5157"
## [5158] "5158" "5159" "5160" "5161" "5162" "5163" "5164" "5165" "5166"
## [5167] "5167" "5168" "5169" "5170" "5171" "5172" "5173" "5174" "5175"
## [5176] "5176" "5177" "5178" "5179" "5180" "5181" "5182" "5183" "5184"
## [5185] "5185" "5186" "5187" "5188" "5189" "5190" "5191" "5192" "5193"
## [5194] "5194" "5195" "5196" "5197" "5198" "5199" "5200" "5201" "5202"
## [5203] "5203" "5204" "5205" "5206" "5207" "5208" "5209" "5210" "5211"
## [5212] "5212" "5213" "5214" "5215" "5216" "5217" "5218" "5219" "5220"
## [5221] "5221" "5222" "5223" "5224" "5225" "5226" "5227" "5228" "5229"
## [5230] "5230" "5231" "5232" "5233" "5234" "5235" "5236" "5237" "5238"
## [5239] "5239" "5240" "5241" "5242" "5243" "5244" "5245" "5246" "5247"
## [5248] "5248" "5249" "5250" "5251" "5252" "5253" "5254" "5255" "5256"
## [5257] "5257" "5258" "5259" "5260" "5261" "5262" "5263" "5264" "5265"
## [5266] "5266" "5267" "5268" "5269" "5270" "5271" "5272" "5273" "5274"
## [5275] "5275" "5276" "5277" "5278" "5279" "5280" "5281" "5282" "5283"
## [5284] "5284" "5285" "5286" "5287" "5288" "5289" "5290" "5291" "5292"
## [5293] "5293" "5294" "5295" "5296" "5297" "5298" "5299" "5300" "5301"
## [5302] "5302" "5303" "5304" "5305" "5306" "5307" "5308" "5309" "5310"
## [5311] "5311" "5312" "5313" "5314" "5315" "5316" "5317" "5318" "5319"
## [5320] "5320" "5321" "5322" "5323" "5324" "5325" "5326" "5327" "5328"
## [5329] "5329" "5330" "5331" "5332" "5333" "5334" "5335" "5336" "5337"
## [5338] "5338" "5339" "5340" "5341" "5342" "5343" "5344" "5345" "5346"
## [5347] "5347" "5348" "5349" "5350" "5351" "5352" "5353" "5354" "5355"
## [5356] "5356" "5357" "5358" "5359" "5360" "5361" "5362" "5363" "5364"
## [5365] "5365" "5366" "5367" "5368" "5369" "5370" "5371" "5372" "5373"
## [5374] "5374" "5375" "5376" "5377" "5378" "5379" "5380" "5381" "5382"
## [5383] "5383" "5384" "5385" "5386" "5387" "5388" "5389" "5390" "5391"
## [5392] "5392" "5393" "5394" "5395" "5396" "5397" "5398" "5399" "5400"
## [5401] "5401" "5402" "5403" "5404" "5405" "5406" "5407" "5408" "5409"
## [5410] "5410" "5411" "5412" "5413" "5414" "5415" "5416" "5417" "5418"
## [5419] "5419" "5420" "5421" "5422" "5423" "5424" "5425" "5426" "5427"
## [5428] "5428" "5429" "5430" "5431" "5432" "5433" "5434" "5435" "5436"
## [5437] "5437" "5438" "5439" "5440" "5441" "5442" "5443" "5444" "5445"
## [5446] "5446" "5447" "5448" "5449" "5450" "5451" "5452" "5453" "5454"
## [5455] "5455" "5456" "5457" "5458" "5459" "5460" "5461" "5462" "5463"
## [5464] "5464" "5465" "5466" "5467" "5468" "5469" "5470" "5471" "5472"
## [5473] "5473" "5474" "5475" "5476" "5477" "5478" "5479" "5480" "5481"
## [5482] "5482" "5483" "5484" "5485" "5486" "5487" "5488" "5489" "5490"
## [5491] "5491" "5492" "5493" "5494" "5495" "5496" "5497" "5498" "5499"
## [5500] "5500" "5501" "5502" "5503" "5504" "5505" "5506" "5507" "5508"
## [5509] "5509" "5510" "5511" "5512" "5513" "5514" "5515" "5516" "5517"
## [5518] "5518" "5519" "5520" "5521" "5522" "5523" "5524" "5525" "5526"
## [5527] "5527" "5528" "5529" "5530" "5531" "5532" "5533" "5534" "5535"
## [5536] "5536" "5537" "5538" "5539" "5540" "5541" "5542" "5543" "5544"
## [5545] "5545" "5546" "5547" "5548" "5549" "5550" "5551" "5552" "5553"
## [5554] "5554" "5555" "5556" "5557" "5558" "5559" "5560" "5561" "5562"
## [5563] "5563" "5564" "5565" "5566" "5567" "5568" "5569" "5570" "5571"
## [5572] "5572" "5573" "5574" "5575" "5576" "5577" "5578" "5579" "5580"
## [5581] "5581" "5582" "5583" "5584" "5585" "5586" "5587" "5588" "5589"
## [5590] "5590" "5591" "5592" "5593" "5594" "5595" "5596" "5597" "5598"
## [5599] "5599" "5600" "5601" "5602" "5603" "5604" "5605" "5606" "5607"
## [5608] "5608" "5609" "5610" "5611" "5612" "5613" "5614" "5615" "5616"
## [5617] "5617" "5618" "5619" "5620" "5621" "5622" "5623" "5624" "5625"
## [5626] "5626" "5627" "5628" "5629" "5630" "5631" "5632" "5633" "5634"
## [5635] "5635" "5636" "5637" "5638" "5639" "5640" "5641" "5642" "5643"
## [5644] "5644" "5645" "5646" "5647" "5648" "5649" "5650" "5651" "5652"
## [5653] "5653" "5654" "5655" "5656" "5657" "5658" "5659" "5660" "5661"
## [5662] "5662" "5663" "5664" "5665" "5666" "5667" "5668" "5669" "5670"
## [5671] "5671" "5672" "5673" "5674" "5675" "5676" "5677" "5678" "5679"
## [5680] "5680" "5681" "5682" "5683" "5684" "5685" "5686" "5687" "5688"
## [5689] "5689" "5690" "5691" "5692" "5693" "5694" "5695" "5696" "5697"
## [5698] "5698" "5699" "5700" "5701" "5702" "5703" "5704" "5705" "5706"
## [5707] "5707" "5708" "5709" "5710" "5711" "5712" "5713" "5714" "5715"
## [5716] "5716" "5717" "5718" "5719" "5720" "5721" "5722" "5723" "5724"
## [5725] "5725" "5726" "5727" "5728" "5729" "5730" "5731" "5732" "5733"
## [5734] "5734" "5735" "5736" "5737" "5738" "5739" "5740" "5741" "5742"
## [5743] "5743" "5744" "5745" "5746" "5747" "5748" "5749" "5750" "5751"
## [5752] "5752" "5753" "5754" "5755" "5756" "5757" "5758" "5759" "5760"
## [5761] "5761" "5762" "5763" "5764" "5765" "5766" "5767" "5768" "5769"
## [5770] "5770" "5771" "5772" "5773" "5774" "5775" "5776" "5777" "5778"
## [5779] "5779" "5780" "5781" "5782" "5783" "5784" "5785" "5786" "5787"
## [5788] "5788" "5789" "5790" "5791" "5792" "5793" "5794" "5795" "5796"
## [5797] "5797" "5798" "5799" "5800" "5801" "5802" "5803" "5804" "5805"
## [5806] "5806" "5807" "5808" "5809" "5810" "5811" "5812" "5813" "5814"
## [5815] "5815" "5816" "5817" "5818" "5819" "5820" "5821" "5822" "5823"
## [5824] "5824" "5825" "5826" "5827" "5828" "5829" "5830" "5831" "5832"
## [5833] "5833" "5834" "5835" "5836" "5837" "5838" "5839" "5840" "5841"
## [5842] "5842" "5843" "5844" "5845" "5846" "5847" "5848" "5849" "5850"
## [5851] "5851" "5852" "5853" "5854" "5855" "5856" "5857" "5858" "5859"
## [5860] "5860" "5861" "5862" "5863" "5864" "5865" "5866" "5867" "5868"
## [5869] "5869" "5870" "5871" "5872" "5873" "5874" "5875" "5876" "5877"
## [5878] "5878" "5879" "5880" "5881" "5882" "5883" "5884" "5885" "5886"
## [5887] "5887" "5888" "5889" "5890" "5891" "5892" "5893" "5894" "5895"
## [5896] "5896" "5897" "5898" "5899" "5900" "5901" "5902" "5903" "5904"
## [5905] "5905" "5906" "5907" "5908" "5909" "5910" "5911" "5912" "5913"
## [5914] "5914" "5915" "5916" "5917" "5918" "5919" "5920" "5921" "5922"
## [5923] "5923" "5924" "5925" "5926" "5927" "5928" "5929" "5930" "5931"
## [5932] "5932" "5933" "5934" "5935" "5936" "5937" "5938" "5939" "5940"
## [5941] "5941" "5942" "5943" "5944" "5945" "5946" "5947" "5948" "5949"
## [5950] "5950" "5951" "5952" "5953" "5954" "5955" "5956" "5957" "5958"
## [5959] "5959" "5960" "5961" "5962" "5963" "5964" "5965" "5966" "5967"
## [5968] "5968" "5969" "5970" "5971" "5972" "5973" "5974" "5975" "5976"
## [5977] "5977" "5978" "5979" "5980" "5981" "5982" "5983" "5984" "5985"
## [5986] "5986" "5987" "5988" "5989" "5990" "5991" "5992" "5993" "5994"
## [5995] "5995" "5996" "5997" "5998" "5999" "6000" "6001" "6002" "6003"
## [6004] "6004" "6005" "6006" "6007" "6008" "6009" "6010" "6011" "6012"
## [6013] "6013" "6014" "6015" "6016" "6017" "6018" "6019" "6020" "6021"
## [6022] "6022" "6023" "6024" "6025" "6026" "6027" "6028" "6029" "6030"
## [6031] "6031" "6032" "6033" "6034" "6035" "6036" "6037" "6038" "6039"
## [6040] "6040" "6041" "6042" "6043" "6044" "6045" "6046" "6047" "6048"
## [6049] "6049" "6050" "6051" "6052" "6053" "6054" "6055" "6056" "6057"
## [6058] "6058" "6059" "6060" "6061" "6062" "6063" "6064" "6065" "6066"
## [6067] "6067" "6068" "6069" "6070" "6071" "6072" "6073" "6074" "6075"
## [6076] "6076" "6077" "6078" "6079" "6080" "6081" "6082" "6083" "6084"
## [6085] "6085" "6086" "6087" "6088" "6089" "6090" "6091" "6092" "6093"
## [6094] "6094" "6095" "6096" "6097" "6098" "6099" "6100" "6101" "6102"
## [6103] "6103" "6104" "6105" "6106" "6107" "6108" "6109" "6110" "6111"
## [6112] "6112" "6113" "6114" "6115" "6116" "6117" "6118" "6119" "6120"
## [6121] "6121" "6122" "6123" "6124" "6125" "6126" "6127" "6128" "6129"
## [6130] "6130" "6131" "6132" "6133" "6134" "6135" "6136" "6137" "6138"
## [6139] "6139" "6140" "6141" "6142" "6143" "6144" "6145" "6146" "6147"
## [6148] "6148" "6149" "6150" "6151" "6152" "6153" "6154" "6155" "6156"
## [6157] "6157" "6158" "6159" "6160" "6161" "6162" "6163" "6164" "6165"
## [6166] "6166" "6167" "6168" "6169" "6170" "6171" "6172" "6173" "6174"
## [6175] "6175" "6176" "6177" "6178" "6179" "6180" "6181" "6182" "6183"
## [6184] "6184" "6185" "6186" "6187" "6188" "6189" "6190" "6191" "6192"
## [6193] "6193" "6194" "6195" "6196" "6197" "6198" "6199" "6200" "6201"
## [6202] "6202" "6203" "6204" "6205" "6206" "6207" "6208" "6209" "6210"
## [6211] "6211" "6212" "6213" "6214" "6215" "6216" "6217" "6218" "6219"
## [6220] "6220" "6221" "6222" "6223" "6224" "6225" "6226" "6227" "6228"
## [6229] "6229" "6230" "6231" "6232" "6233" "6234" "6235" "6236" "6237"
## [6238] "6238" "6239" "6240" "6241" "6242" "6243" "6244" "6245" "6246"
## [6247] "6247" "6248" "6249" "6250" "6251" "6252" "6253" "6254" "6255"
## [6256] "6256" "6257" "6258" "6259" "6260" "6261" "6262" "6263" "6264"
## [6265] "6265" "6266" "6267" "6268" "6269" "6270" "6271" "6272" "6273"
## [6274] "6274" "6275" "6276" "6277" "6278" "6279" "6280" "6281" "6282"
## [6283] "6283" "6284" "6285" "6286" "6287" "6288" "6289" "6290" "6291"
## [6292] "6292" "6293" "6294" "6295" "6296" "6297" "6298" "6299" "6300"
## [6301] "6301" "6302" "6303" "6304" "6305" "6306" "6307" "6308" "6309"
## [6310] "6310" "6311" "6312" "6313" "6314" "6315" "6316" "6317" "6318"
## [6319] "6319" "6320" "6321" "6322" "6323" "6324" "6325" "6326" "6327"
## [6328] "6328" "6329" "6330" "6331" "6332" "6333" "6334" "6335" "6336"
## [6337] "6337" "6338" "6339" "6340" "6341" "6342" "6343" "6344" "6345"
## [6346] "6346" "6347" "6348" "6349" "6350" "6351" "6352" "6353" "6354"
## [6355] "6355" "6356" "6357" "6358" "6359" "6360" "6361" "6362" "6363"
## [6364] "6364" "6365" "6366" "6367" "6368" "6369" "6370" "6371" "6372"
## [6373] "6373" "6374" "6375" "6376" "6377" "6378" "6379" "6380" "6381"
## [6382] "6382" "6383" "6384" "6385" "6386" "6387" "6388" "6389" "6390"
## [6391] "6391" "6392" "6393" "6394" "6395" "6396" "6397" "6398" "6399"
## [6400] "6400" "6401" "6402" "6403" "6404" "6405" "6406" "6407" "6408"
## [6409] "6409" "6410" "6411" "6412" "6413" "6414" "6415" "6416" "6417"
## [6418] "6418" "6419" "6420" "6421" "6422" "6423" "6424" "6425" "6426"
## [6427] "6427" "6428" "6429" "6430" "6431" "6432" "6433" "6434" "6435"
## [6436] "6436" "6437" "6438" "6439" "6440" "6441" "6442" "6443" "6444"
## [6445] "6445" "6446" "6447" "6448" "6449" "6450" "6451" "6452" "6453"
## [6454] "6454" "6455" "6456" "6457" "6458" "6459" "6460" "6461" "6462"
## [6463] "6463" "6464" "6465" "6466" "6467" "6468" "6469" "6470" "6471"
## [6472] "6472" "6473" "6474" "6475" "6476" "6477" "6478" "6479" "6480"
## [6481] "6481" "6482" "6483" "6484" "6485" "6486" "6487" "6488" "6489"
## [6490] "6490" "6491" "6492" "6493" "6494" "6495" "6496" "6497" "6498"
## [6499] "6499" "6500" "6501" "6502" "6503" "6504" "6505" "6506" "6507"
## [6508] "6508" "6509" "6510" "6511" "6512" "6513" "6514" "6515" "6516"
## [6517] "6517" "6518" "6519" "6520" "6521" "6522" "6523" "6524" "6525"
## [6526] "6526" "6527" "6528" "6529" "6530" "6531" "6532" "6533" "6534"
## [6535] "6535" "6536" "6537" "6538" "6539" "6540" "6541" "6542" "6543"
## [6544] "6544" "6545" "6546" "6547" "6548" "6549" "6550" "6551" "6552"
## [6553] "6553" "6554" "6555" "6556" "6557" "6558" "6559" "6560" "6561"
## [6562] "6562" "6563" "6564" "6565" "6566" "6567" "6568" "6569" "6570"
## [6571] "6571" "6572" "6573" "6574" "6575" "6576" "6577" "6578" "6579"
## [6580] "6580" "6581" "6582" "6583" "6584" "6585" "6586" "6587" "6588"
## [6589] "6589" "6590" "6591" "6592" "6593" "6594" "6595" "6596" "6597"
## [6598] "6598" "6599" "6600" "6601" "6602" "6603" "6604" "6605" "6606"
## [6607] "6607" "6608" "6609" "6610" "6611" "6612" "6613" "6614" "6615"
## [6616] "6616" "6617" "6618" "6619" "6620" "6621" "6622" "6623" "6624"
## [6625] "6625" "6626" "6627" "6628" "6629" "6630" "6631" "6632" "6633"
## [6634] "6634" "6635" "6636" "6637" "6638" "6639" "6640" "6641" "6642"
## [6643] "6643" "6644" "6645" "6646" "6647" "6648" "6649" "6650" "6651"
## [6652] "6652" "6653" "6654" "6655" "6656" "6657" "6658" "6659" "6660"
## [6661] "6661" "6662" "6663" "6664" "6665" "6666" "6667" "6668" "6669"
## [6670] "6670" "6671" "6672" "6673" "6674" "6675" "6676" "6677" "6678"
## [6679] "6679" "6680" "6681" "6682" "6683" "6684" "6685" "6686" "6687"
## [6688] "6688" "6689" "6690" "6691" "6692" "6693" "6694" "6695" "6696"
## [6697] "6697" "6698" "6699" "6700" "6701" "6702" "6703" "6704" "6705"
## [6706] "6706" "6707" "6708" "6709" "6710" "6711" "6712" "6713" "6714"
## [6715] "6715" "6716" "6717" "6718" "6719" "6720" "6721" "6722" "6723"
## [6724] "6724" "6725" "6726" "6727" "6728" "6729" "6730" "6731" "6732"
## [6733] "6733" "6734" "6735" "6736" "6737" "6738" "6739" "6740" "6741"
## [6742] "6742" "6743" "6744" "6745" "6746" "6747" "6748" "6749" "6750"
## [6751] "6751" "6752" "6753" "6754" "6755" "6756" "6757" "6758" "6759"
## [6760] "6760" "6761" "6762" "6763" "6764" "6765" "6766" "6767" "6768"
## [6769] "6769" "6770" "6771" "6772" "6773" "6774" "6775" "6776" "6777"
## [6778] "6778" "6779" "6780" "6781" "6782" "6783" "6784" "6785" "6786"
## [6787] "6787" "6788" "6789" "6790" "6791" "6792" "6793" "6794" "6795"
## [6796] "6796" "6797" "6798" "6799" "6800" "6801" "6802" "6803" "6804"
## [6805] "6805" "6806" "6807" "6808" "6809" "6810" "6811" "6812" "6813"
## [6814] "6814" "6815" "6816" "6817" "6818" "6819" "6820" "6821" "6822"
## [6823] "6823" "6824" "6825" "6826" "6827" "6828" "6829" "6830" "6831"
## [6832] "6832" "6833" "6834" "6835" "6836" "6837" "6838" "6839" "6840"
## [6841] "6841" "6842" "6843" "6844" "6845" "6846" "6847" "6848" "6849"
## [6850] "6850" "6851" "6852" "6853" "6854" "6855" "6856" "6857" "6858"
## [6859] "6859" "6860" "6861" "6862" "6863" "6864" "6865" "6866" "6867"
## [6868] "6868" "6869" "6870" "6871" "6872" "6873" "6874" "6875" "6876"
## [6877] "6877" "6878" "6879" "6880" "6881" "6882" "6883" "6884" "6885"
## [6886] "6886" "6887" "6888" "6889" "6890" "6891" "6892" "6893" "6894"
## [6895] "6895" "6896" "6897" "6898" "6899" "6900" "6901" "6902" "6903"
## [6904] "6904" "6905" "6906" "6907" "6908" "6909" "6910" "6911" "6912"
## [6913] "6913" "6914" "6915" "6916" "6917" "6918" "6919" "6920" "6921"
## [6922] "6922" "6923" "6924" "6925" "6926" "6927" "6928" "6929" "6930"
## [6931] "6931" "6932" "6933" "6934" "6935" "6936" "6937" "6938" "6939"
## [6940] "6940" "6941" "6942" "6943" "6944" "6945" "6946" "6947" "6948"
## [6949] "6949" "6950" "6951" "6952" "6953" "6954" "6955" "6956" "6957"
## [6958] "6958" "6959" "6960" "6961" "6962" "6963" "6964" "6965" "6966"
## [6967] "6967" "6968" "6969" "6970" "6971" "6972" "6973" "6974" "6975"
## [6976] "6976" "6977" "6978" "6979" "6980" "6981" "6982" "6983" "6984"
## [6985] "6985" "6986" "6987" "6988" "6989" "6990" "6991" "6992" "6993"
## [6994] "6994" "6995" "6996" "6997" "6998" "6999" "7000" "7001" "7002"
## [7003] "7003" "7004" "7005" "7006" "7007" "7008" "7009" "7010" "7011"
## [7012] "7012" "7013" "7014" "7015" "7016" "7017" "7018" "7019" "7020"
## [7021] "7021" "7022" "7023" "7024" "7025" "7026" "7027" "7028" "7029"
## [7030] "7030" "7031" "7032" "7033" "7034" "7035" "7036" "7037" "7038"
## [7039] "7039" "7040" "7041" "7042" "7043" "7044" "7045" "7046" "7047"
## [7048] "7048" "7049" "7050" "7051" "7052" "7053" "7054" "7055" "7056"
## [7057] "7057" "7058" "7059" "7060" "7061" "7062" "7063" "7064" "7065"
## [7066] "7066" "7067" "7068" "7069" "7070" "7071" "7072" "7073" "7074"
## [7075] "7075" "7076" "7077" "7078" "7079" "7080" "7081" "7082" "7083"
## [7084] "7084" "7085" "7086" "7087" "7088" "7089" "7090" "7091" "7092"
## [7093] "7093" "7094" "7095" "7096" "7097" "7098" "7099" "7100" "7101"
## [7102] "7102" "7103" "7104" "7105" "7106" "7107" "7108" "7109" "7110"
## [7111] "7111" "7112" "7113" "7114" "7115" "7116" "7117" "7118" "7119"
## [7120] "7120" "7121" "7122" "7123" "7124" "7125" "7126" "7127" "7128"
## [7129] "7129" "7130" "7131" "7132" "7133" "7134" "7135" "7136" "7137"
## [7138] "7138" "7139" "7140" "7141" "7142" "7143" "7144" "7145" "7146"
## [7147] "7147" "7148" "7149" "7150" "7151" "7152" "7153" "7154" "7155"
## [7156] "7156" "7157" "7158" "7159" "7160" "7161" "7162" "7163" "7164"
## [7165] "7165" "7166" "7167" "7168" "7169" "7170" "7171" "7172" "7173"
## [7174] "7174" "7175" "7176" "7177" "7178" "7179" "7180" "7181" "7182"
## [7183] "7183" "7184" "7185" "7186" "7187" "7188" "7189" "7190" "7191"
## [7192] "7192" "7193" "7194" "7195" "7196" "7197" "7198" "7199" "7200"
## [7201] "7201" "7202" "7203" "7204" "7205" "7206" "7207" "7208" "7209"
## [7210] "7210" "7211" "7212" "7213" "7214" "7215" "7216" "7217" "7218"
## [7219] "7219" "7220" "7221" "7222" "7223" "7224" "7225" "7226" "7227"
## [7228] "7228" "7229" "7230" "7231" "7232" "7233" "7234" "7235" "7236"
## [7237] "7237" "7238" "7239" "7240" "7241" "7242" "7243" "7244" "7245"
## [7246] "7246" "7247" "7248" "7249" "7250" "7251" "7252" "7253" "7254"
## [7255] "7255" "7256" "7257" "7258" "7259" "7260" "7261" "7262" "7263"
## [7264] "7264" "7265" "7266" "7267" "7268" "7269" "7270" "7271" "7272"
## [7273] "7273" "7274" "7275" "7276" "7277" "7278" "7279" "7280" "7281"
## [7282] "7282" "7283" "7284" "7285" "7286" "7287" "7288" "7289" "7290"
## [7291] "7291" "7292" "7293" "7294" "7295" "7296" "7297" "7298" "7299"
## [7300] "7300" "7301" "7302" "7303" "7304" "7305" "7306" "7307" "7308"
## [7309] "7309" "7310" "7311" "7312" "7313" "7314" "7315" "7316" "7317"
## [7318] "7318" "7319" "7320" "7321" "7322" "7323" "7324" "7325" "7326"
## [7327] "7327" "7328" "7329" "7330" "7331" "7332" "7333" "7334" "7335"
## [7336] "7336" "7337" "7338" "7339" "7340" "7341" "7342" "7343" "7344"
## [7345] "7345" "7346" "7347" "7348" "7349" "7350" "7351" "7352" "7353"
## [7354] "7354" "7355" "7356" "7357" "7358" "7359" "7360" "7361" "7362"
## [7363] "7363" "7364" "7365" "7366" "7367" "7368" "7369" "7370" "7371"
## [7372] "7372" "7373" "7374" "7375" "7376" "7377" "7378" "7379" "7380"
## [7381] "7381" "7382" "7383" "7384" "7385" "7386" "7387" "7388" "7389"
## [7390] "7390" "7391" "7392" "7393" "7394" "7395" "7396" "7397" "7398"
## [7399] "7399" "7400" "7401" "7402" "7403" "7404" "7405" "7406" "7407"
## [7408] "7408" "7409" "7410" "7411" "7412" "7413" "7414" "7415" "7416"
## [7417] "7417" "7418" "7419" "7420" "7421" "7422" "7423" "7424" "7425"
## [7426] "7426" "7427" "7428" "7429" "7430" "7431" "7432" "7433" "7434"
## [7435] "7435" "7436" "7437" "7438" "7439" "7440" "7441" "7442" "7443"
## [7444] "7444" "7445" "7446" "7447" "7448" "7449" "7450" "7451" "7452"
## [7453] "7453" "7454" "7455" "7456" "7457" "7458" "7459" "7460" "7461"
## [7462] "7462" "7463" "7464" "7465" "7466" "7467" "7468" "7469" "7470"
## [7471] "7471" "7472" "7473" "7474" "7475" "7476" "7477" "7478" "7479"
## [7480] "7480" "7481" "7482" "7483" "7484" "7485" "7486" "7487" "7488"
## [7489] "7489" "7490" "7491" "7492" "7493" "7494" "7495" "7496" "7497"
## [7498] "7498" "7499" "7500" "7501" "7502" "7503" "7504" "7505" "7506"
## [7507] "7507" "7508" "7509" "7510" "7511" "7512" "7513" "7514" "7515"
## [7516] "7516" "7517" "7518" "7519" "7520" "7521" "7522" "7523" "7524"
## [7525] "7525" "7526" "7527" "7528" "7529" "7530" "7531" "7532" "7533"
## [7534] "7534" "7535" "7536" "7537" "7538" "7539" "7540" "7541" "7542"
## [7543] "7543" "7544" "7545" "7546" "7547" "7548" "7549" "7550" "7551"
## [7552] "7552" "7553" "7554" "7555" "7556" "7557" "7558" "7559" "7560"
## [7561] "7561" "7562" "7563" "7564" "7565" "7566" "7567" "7568" "7569"
## [7570] "7570" "7571" "7572" "7573" "7574" "7575" "7576" "7577" "7578"
## [7579] "7579" "7580" "7581" "7582" "7583" "7584" "7585" "7586" "7587"
## [7588] "7588" "7589" "7590" "7591" "7592" "7593" "7594" "7595" "7596"
## [7597] "7597" "7598" "7599" "7600" "7601" "7602" "7603" "7604" "7605"
## [7606] "7606" "7607" "7608" "7609" "7610" "7611" "7612" "7613" "7614"
## [7615] "7615" "7616" "7617" "7618" "7619" "7620" "7621" "7622" "7623"
## [7624] "7624" "7625" "7626" "7627" "7628" "7629" "7630" "7631" "7632"
## [7633] "7633" "7634" "7635" "7636" "7637" "7638" "7639" "7640" "7641"
## [7642] "7642" "7643" "7644" "7645" "7646" "7647" "7648" "7649" "7650"
## [7651] "7651" "7652" "7653" "7654" "7655" "7656" "7657" "7658" "7659"
## [7660] "7660" "7661" "7662" "7663" "7664" "7665" "7666" "7667" "7668"
## [7669] "7669" "7670" "7671" "7672" "7673" "7674" "7675" "7676" "7677"
## [7678] "7678" "7679" "7680" "7681" "7682" "7683" "7684" "7685" "7686"
## [7687] "7687" "7688" "7689" "7690" "7691" "7692" "7693" "7694" "7695"
## [7696] "7696" "7697" "7698" "7699" "7700" "7701" "7702" "7703" "7704"
## [7705] "7705" "7706" "7707" "7708" "7709" "7710" "7711" "7712" "7713"
## [7714] "7714" "7715" "7716" "7717" "7718" "7719" "7720" "7721" "7722"
## [7723] "7723" "7724" "7725" "7726" "7727" "7728" "7729" "7730" "7731"
## [7732] "7732" "7733" "7734" "7735" "7736" "7737" "7738" "7739" "7740"
## [7741] "7741" "7742" "7743" "7744" "7745" "7746" "7747" "7748" "7749"
## [7750] "7750" "7751" "7752" "7753" "7754" "7755" "7756" "7757" "7758"
## [7759] "7759" "7760" "7761" "7762" "7763" "7764" "7765" "7766" "7767"
## [7768] "7768" "7769" "7770" "7771" "7772" "7773" "7774" "7775" "7776"
## [7777] "7777" "7778" "7779" "7780" "7781" "7782" "7783" "7784" "7785"
## [7786] "7786" "7787" "7788" "7789" "7790" "7791" "7792" "7793" "7794"
## [7795] "7795" "7796" "7797" "7798" "7799" "7800" "7801" "7802" "7803"
## [7804] "7804" "7805" "7806" "7807" "7808" "7809" "7810" "7811" "7812"
## [7813] "7813" "7814" "7815" "7816" "7817" "7818" "7819" "7820" "7821"
## [7822] "7822" "7823" "7824" "7825" "7826" "7827" "7828" "7829" "7830"
## [7831] "7831" "7832" "7833" "7834" "7835" "7836" "7837" "7838" "7839"
## [7840] "7840" "7841" "7842" "7843" "7844" "7845" "7846" "7847" "7848"
## [7849] "7849" "7850" "7851" "7852" "7853" "7854" "7855" "7856" "7857"
## [7858] "7858" "7859" "7860" "7861" "7862" "7863" "7864" "7865" "7866"
## [7867] "7867" "7868" "7869" "7870" "7871" "7872" "7873" "7874" "7875"
## [7876] "7876" "7877" "7878" "7879" "7880" "7881" "7882" "7883" "7884"
## [7885] "7885" "7886" "7887" "7888" "7889" "7890" "7891" "7892" "7893"
## [7894] "7894" "7895" "7896" "7897" "7898" "7899" "7900" "7901" "7902"
## [7903] "7903" "7904" "7905" "7906" "7907" "7908" "7909" "7910" "7911"
## [7912] "7912" "7913" "7914" "7915" "7916" "7917" "7918" "7919" "7920"
## [7921] "7921" "7922" "7923" "7924" "7925" "7926" "7927" "7928" "7929"
## [7930] "7930" "7931" "7932" "7933" "7934" "7935" "7936" "7937" "7938"
## [7939] "7939" "7940" "7941" "7942" "7943" "7944" "7945" "7946" "7947"
## [7948] "7948" "7949" "7950" "7951" "7952" "7953" "7954" "7955" "7956"
## [7957] "7957" "7958" "7959" "7960" "7961" "7962" "7963" "7964" "7965"
## [7966] "7966" "7967" "7968" "7969" "7970" "7971" "7972" "7973" "7974"
## [7975] "7975" "7976" "7977" "7978" "7979" "7980" "7981" "7982" "7983"
## [7984] "7984" "7985" "7986" "7987" "7988" "7989" "7990" "7991" "7992"
## [7993] "7993" "7994" "7995" "7996" "7997" "7998" "7999" "8000" "8001"
## [8002] "8002" "8003" "8004" "8005" "8006" "8007" "8008" "8009" "8010"
## [8011] "8011" "8012" "8013" "8014" "8015" "8016" "8017" "8018" "8019"
## [8020] "8020" "8021" "8022" "8023" "8024" "8025" "8026" "8027" "8028"
## [8029] "8029" "8030" "8031" "8032" "8033" "8034" "8035" "8036" "8037"
## [8038] "8038" "8039" "8040" "8041" "8042" "8043" "8044" "8045" "8046"
## [8047] "8047" "8048" "8049" "8050" "8051" "8052" "8053" "8054" "8055"
## [8056] "8056" "8057" "8058" "8059" "8060" "8061" "8062" "8063" "8064"
## [8065] "8065" "8066" "8067" "8068" "8069" "8070" "8071" "8072" "8073"
## [8074] "8074" "8075" "8076" "8077" "8078" "8079" "8080" "8081" "8082"
## [8083] "8083" "8084" "8085" "8086" "8087" "8088" "8089" "8090" "8091"
## [8092] "8092" "8093" "8094" "8095" "8096" "8097" "8098" "8099" "8100"
## [8101] "8101" "8102" "8103" "8104" "8105" "8106" "8107" "8108" "8109"
## [8110] "8110" "8111" "8112" "8113" "8114" "8115" "8116" "8117" "8118"
## [8119] "8119" "8120" "8121" "8122" "8123" "8124" "8125" "8126" "8127"
## [8128] "8128" "8129" "8130" "8131" "8132" "8133" "8134" "8135" "8136"
## [8137] "8137" "8138" "8139" "8140" "8141" "8142" "8143" "8144" "8145"
## [8146] "8146" "8147" "8148" "8149" "8150" "8151" "8152" "8153" "8154"
## [8155] "8155" "8156" "8157" "8158" "8159" "8160" "8161" "8162" "8163"
## [8164] "8164" "8165" "8166" "8167" "8168" "8169" "8170" "8171" "8172"
## [8173] "8173" "8174" "8175" "8176" "8177" "8178" "8179" "8180" "8181"
## [8182] "8182" "8183" "8184" "8185" "8186" "8187" "8188" "8189" "8190"
## [8191] "8191" "8192" "8193" "8194" "8195" "8196" "8197" "8198" "8199"
## [8200] "8200" "8201" "8202" "8203" "8204" "8205" "8206" "8207" "8208"
## [8209] "8209" "8210" "8211" "8212" "8213" "8214" "8215" "8216" "8217"
## [8218] "8218" "8219" "8220" "8221" "8222" "8223" "8224" "8225" "8226"
## [8227] "8227" "8228" "8229" "8230" "8231" "8232" "8233" "8234" "8235"
## [8236] "8236" "8237" "8238" "8239" "8240" "8241" "8242" "8243" "8244"
## [8245] "8245" "8246" "8247" "8248" "8249" "8250" "8251" "8252" "8253"
## [8254] "8254" "8255" "8256" "8257" "8258" "8259" "8260" "8261" "8262"
## [8263] "8263" "8264" "8265" "8266" "8267" "8268" "8269" "8270" "8271"
## [8272] "8272" "8273" "8274" "8275" "8276" "8277" "8278" "8279" "8280"
## [8281] "8281" "8282" "8283" "8284" "8285" "8286" "8287" "8288" "8289"
## [8290] "8290" "8291" "8292" "8293" "8294" "8295" "8296" "8297" "8298"
## [8299] "8299" "8300" "8301" "8302" "8303" "8304" "8305" "8306" "8307"
## [8308] "8308" "8309" "8310" "8311" "8312" "8313" "8314" "8315" "8316"
## [8317] "8317" "8318" "8319" "8320" "8321" "8322" "8323" "8324" "8325"
## [8326] "8326" "8327" "8328" "8329" "8330" "8331" "8332" "8333" "8334"
## [8335] "8335" "8336" "8337" "8338" "8339" "8340" "8341" "8342" "8343"
## [8344] "8344" "8345" "8346" "8347" "8348" "8349" "8350" "8351" "8352"
## [8353] "8353" "8354" "8355" "8356" "8357" "8358" "8359" "8360" "8361"
## [8362] "8362" "8363" "8364" "8365" "8366" "8367" "8368" "8369" "8370"
## [8371] "8371" "8372" "8373" "8374" "8375" "8376" "8377" "8378" "8379"
## [8380] "8380" "8381" "8382" "8383" "8384" "8385" "8386" "8387" "8388"
## [8389] "8389" "8390" "8391" "8392" "8393" "8394" "8395" "8396" "8397"
## [8398] "8398" "8399" "8400" "8401" "8402" "8403" "8404" "8405" "8406"
## [8407] "8407" "8408" "8409" "8410" "8411" "8412" "8413" "8414" "8415"
## [8416] "8416" "8417" "8418" "8419" "8420" "8421" "8422" "8423" "8424"
## [8425] "8425" "8426" "8427" "8428" "8429" "8430" "8431" "8432" "8433"
## [8434] "8434" "8435" "8436" "8437" "8438" "8439" "8440" "8441" "8442"
## [8443] "8443" "8444" "8445" "8446" "8447" "8448" "8449" "8450" "8451"
## [8452] "8452" "8453" "8454" "8455" "8456" "8457" "8458" "8459" "8460"
## [8461] "8461" "8462" "8463" "8464" "8465" "8466" "8467" "8468" "8469"
## [8470] "8470" "8471" "8472" "8473" "8474" "8475" "8476" "8477" "8478"
## [8479] "8479" "8480" "8481" "8482" "8483" "8484" "8485" "8486" "8487"
## [8488] "8488" "8489" "8490" "8491" "8492" "8493" "8494" "8495" "8496"
## [8497] "8497" "8498" "8499" "8500" "8501" "8502" "8503" "8504" "8505"
## [8506] "8506" "8507" "8508" "8509" "8510" "8511" "8512" "8513" "8514"
## [8515] "8515" "8516" "8517" "8518" "8519" "8520" "8521" "8522" "8523"
## [8524] "8524" "8525" "8526" "8527" "8528" "8529" "8530" "8531" "8532"
## [8533] "8533" "8534" "8535" "8536" "8537" "8538" "8539" "8540" "8541"
## [8542] "8542" "8543" "8544" "8545" "8546" "8547" "8548" "8549" "8550"
## [8551] "8551" "8552" "8553" "8554" "8555" "8556" "8557" "8558" "8559"
## [8560] "8560" "8561" "8562" "8563" "8564" "8565" "8566" "8567" "8568"
## [8569] "8569" "8570" "8571" "8572" "8573" "8574" "8575" "8576" "8577"
## [8578] "8578" "8579" "8580" "8581" "8582" "8583" "8584" "8585" "8586"
## [8587] "8587" "8588" "8589" "8590" "8591" "8592" "8593" "8594" "8595"
## [8596] "8596" "8597" "8598" "8599" "8600" "8601" "8602" "8603" "8604"
## [8605] "8605" "8606" "8607" "8608" "8609" "8610" "8611" "8612" "8613"
## [8614] "8614" "8615" "8616" "8617" "8618" "8619" "8620" "8621" "8622"
## [8623] "8623" "8624" "8625" "8626" "8627" "8628" "8629" "8630" "8631"
## [8632] "8632" "8633" "8634" "8635" "8636" "8637" "8638" "8639" "8640"
## [8641] "8641" "8642" "8643" "8644" "8645" "8646" "8647" "8648" "8649"
## [8650] "8650" "8651" "8652" "8653" "8654" "8655" "8656" "8657" "8658"
## [8659] "8659" "8660" "8661" "8662" "8663" "8664" "8665" "8666" "8667"
## [8668] "8668" "8669" "8670" "8671" "8672" "8673" "8674" "8675" "8676"
## [8677] "8677" "8678" "8679" "8680" "8681" "8682" "8683" "8684" "8685"
## [8686] "8686" "8687" "8688" "8689" "8690" "8691" "8692" "8693" "8694"
## [8695] "8695" "8696" "8697" "8698" "8699" "8700" "8701" "8702" "8703"
## [8704] "8704" "8705" "8706" "8707" "8708" "8709" "8710" "8711" "8712"
## [8713] "8713" "8714" "8715" "8716" "8717" "8718" "8719" "8720" "8721"
## [8722] "8722" "8723" "8724" "8725" "8726" "8727" "8728" "8729" "8730"
## [8731] "8731" "8732" "8733" "8734" "8735" "8736" "8737" "8738" "8739"
## [8740] "8740" "8741" "8742" "8743" "8744" "8745" "8746" "8747" "8748"
## [8749] "8749" "8750" "8751" "8752" "8753" "8754" "8755" "8756" "8757"
## [8758] "8758" "8759" "8760" "8761" "8762" "8763" "8764" "8765" "8766"
## [8767] "8767" "8768" "8769" "8770" "8771" "8772" "8773" "8774" "8775"
## [8776] "8776" "8777" "8778" "8779" "8780" "8781" "8782" "8783" "8784"
## [8785] "8785" "8786" "8787" "8788" "8789" "8790" "8791" "8792" "8793"
## [8794] "8794" "8795" "8796" "8797" "8798" "8799" "8800" "8801" "8802"
## [8803] "8803" "8804" "8805" "8806" "8807" "8808" "8809" "8810" "8811"
## [8812] "8812" "8813" "8814" "8815" "8816" "8817" "8818" "8819" "8820"
## [8821] "8821" "8822" "8823" "8824" "8825" "8826" "8827" "8828" "8829"
## [8830] "8830" "8831" "8832" "8833" "8834" "8835" "8836" "8837" "8838"
## [8839] "8839" "8840" "8841" "8842" "8843" "8844" "8845" "8846" "8847"
## [8848] "8848" "8849" "8850" "8851" "8852" "8853" "8854" "8855" "8856"
## [8857] "8857" "8858" "8859" "8860" "8861" "8862" "8863" "8864" "8865"
## [8866] "8866" "8867" "8868" "8869" "8870" "8871" "8872" "8873" "8874"
## [8875] "8875" "8876" "8877" "8878" "8879" "8880" "8881" "8882" "8883"
## [8884] "8884" "8885" "8886" "8887" "8888" "8889" "8890" "8891" "8892"
## [8893] "8893" "8894" "8895" "8896" "8897" "8898" "8899" "8900" "8901"
## [8902] "8902" "8903" "8904" "8905" "8906" "8907" "8908" "8909" "8910"
## [8911] "8911" "8912" "8913" "8914" "8915" "8916" "8917" "8918" "8919"
## [8920] "8920" "8921" "8922" "8923" "8924" "8925" "8926" "8927" "8928"
## [8929] "8929" "8930" "8931" "8932" "8933" "8934" "8935" "8936" "8937"
## [8938] "8938" "8939" "8940" "8941" "8942" "8943" "8944" "8945" "8946"
## [8947] "8947" "8948" "8949" "8950" "8951" "8952" "8953" "8954" "8955"
## [8956] "8956" "8957" "8958" "8959" "8960" "8961" "8962" "8963" "8964"
## [8965] "8965" "8966" "8967" "8968" "8969" "8970" "8971" "8972" "8973"
## [8974] "8974" "8975" "8976" "8977" "8978" "8979" "8980" "8981" "8982"
## [8983] "8983" "8984" "8985" "8986" "8987" "8988" "8989" "8990" "8991"
## [8992] "8992" "8993" "8994" "8995" "8996" "8997" "8998" "8999" "9000"
## [9001] "9001" "9002" "9003" "9004" "9005" "9006" "9007" "9008" "9009"
## [9010] "9010" "9011" "9012" "9013" "9014" "9015" "9016" "9017" "9018"
## [9019] "9019" "9020" "9021" "9022" "9023" "9024" "9025" "9026" "9027"
## [9028] "9028" "9029" "9030" "9031" "9032" "9033" "9034" "9035" "9036"
## [9037] "9037" "9038" "9039" "9040" "9041" "9042" "9043" "9044" "9045"
## [9046] "9046" "9047" "9048" "9049" "9050" "9051" "9052" "9053" "9054"
## [9055] "9055" "9056" "9057" "9058" "9059" "9060" "9061" "9062" "9063"
## [9064] "9064" "9065" "9066" "9067" "9068" "9069" "9070" "9071" "9072"
## [9073] "9073" "9074" "9075" "9076" "9077" "9078" "9079" "9080" "9081"
## [9082] "9082" "9083" "9084" "9085" "9086" "9087" "9088" "9089" "9090"
## [9091] "9091" "9092" "9093" "9094" "9095" "9096" "9097" "9098" "9099"
## [9100] "9100" "9101" "9102" "9103" "9104" "9105" "9106" "9107" "9108"
## [9109] "9109" "9110" "9111" "9112" "9113" "9114" "9115" "9116" "9117"
## [9118] "9118" "9119" "9120" "9121" "9122" "9123" "9124" "9125" "9126"
## [9127] "9127" "9128" "9129" "9130" "9131" "9132" "9133" "9134" "9135"
## [9136] "9136" "9137" "9138" "9139" "9140" "9141" "9142" "9143" "9144"
## [9145] "9145" "9146" "9147" "9148" "9149" "9150" "9151" "9152" "9153"
## [9154] "9154" "9155" "9156" "9157" "9158" "9159" "9160" "9161" "9162"
## [9163] "9163" "9164" "9165" "9166" "9167" "9168" "9169" "9170" "9171"
## [9172] "9172" "9173" "9174" "9175" "9176" "9177" "9178" "9179" "9180"
## [9181] "9181" "9182" "9183" "9184" "9185" "9186" "9187" "9188" "9189"
## [9190] "9190" "9191" "9192" "9193" "9194" "9195" "9196" "9197" "9198"
## [9199] "9199" "9200" "9201" "9202" "9203" "9204" "9205" "9206" "9207"
## [9208] "9208" "9209" "9210" "9211" "9212" "9213" "9214" "9215" "9216"
## [9217] "9217" "9218" "9219" "9220" "9221" "9222" "9223" "9224" "9225"
## [9226] "9226" "9227" "9228" "9229" "9230" "9231" "9232" "9233" "9234"
## [9235] "9235" "9236" "9237" "9238" "9239" "9240" "9241" "9242" "9243"
## [9244] "9244" "9245" "9246" "9247" "9248" "9249" "9250" "9251" "9252"
## [9253] "9253" "9254" "9255" "9256" "9257" "9258" "9259" "9260" "9261"
## [9262] "9262" "9263" "9264" "9265" "9266" "9267" "9268" "9269" "9270"
## [9271] "9271" "9272" "9273" "9274" "9275" "9276" "9277" "9278" "9279"
## [9280] "9280" "9281" "9282" "9283" "9284" "9285" "9286" "9287" "9288"
## [9289] "9289" "9290" "9291" "9292" "9293" "9294" "9295" "9296" "9297"
## [9298] "9298" "9299" "9300" "9301" "9302" "9303" "9304" "9305" "9306"
## [9307] "9307" "9308" "9309" "9310" "9311" "9312" "9313" "9314" "9315"
## [9316] "9316" "9317" "9318" "9319" "9320" "9321" "9322" "9323" "9324"
## [9325] "9325" "9326" "9327" "9328" "9329" "9330" "9331" "9332" "9333"
## [9334] "9334" "9335" "9336" "9337" "9338" "9339" "9340" "9341" "9342"
## [9343] "9343" "9344" "9345" "9346" "9347" "9348" "9349" "9350" "9351"
## [9352] "9352" "9353" "9354" "9355" "9356" "9357" "9358" "9359" "9360"
## [9361] "9361" "9362" "9363" "9364" "9365" "9366" "9367" "9368" "9369"
## [9370] "9370" "9371" "9372" "9373" "9374" "9375" "9376" "9377" "9378"
## [9379] "9379" "9380" "9381" "9382" "9383" "9384" "9385" "9386" "9387"
## [9388] "9388" "9389" "9390" "9391" "9392" "9393" "9394" "9395" "9396"
## [9397] "9397" "9398" "9399" "9400" "9401" "9402" "9403" "9404" "9405"
## [9406] "9406" "9407" "9408" "9409" "9410" "9411" "9412" "9413" "9414"
## [9415] "9415" "9416" "9417" "9418" "9419" "9420" "9421" "9422" "9423"
## [9424] "9424" "9425" "9426" "9427" "9428" "9429" "9430" "9431" "9432"
## [9433] "9433" "9434" "9435" "9436" "9437" "9438" "9439" "9440" "9441"
## [9442] "9442" "9443" "9444" "9445" "9446" "9447" "9448" "9449" "9450"
## [9451] "9451" "9452" "9453" "9454" "9455" "9456" "9457" "9458" "9459"
## [9460] "9460" "9461" "9462" "9463" "9464" "9465" "9466" "9467" "9468"
## [9469] "9469" "9470" "9471" "9472" "9473" "9474" "9475" "9476" "9477"
## [9478] "9478" "9479" "9480" "9481" "9482" "9483" "9484" "9485" "9486"
## [9487] "9487" "9488" "9489" "9490" "9491" "9492" "9493" "9494" "9495"
## [9496] "9496" "9497" "9498" "9499" "9500" "9501" "9502" "9503" "9504"
## [9505] "9505" "9506" "9507" "9508" "9509" "9510" "9511" "9512" "9513"
## [9514] "9514" "9515" "9516" "9517" "9518" "9519" "9520" "9521" "9522"
## [9523] "9523" "9524" "9525" "9526" "9527" "9528" "9529" "9530" "9531"
## [9532] "9532" "9533" "9534" "9535" "9536" "9537" "9538" "9539" "9540"
## [9541] "9541" "9542" "9543" "9544" "9545" "9546" "9547" "9548" "9549"
## [9550] "9550" "9551" "9552" "9553" "9554" "9555" "9556" "9557" "9558"
## [9559] "9559" "9560" "9561" "9562" "9563" "9564" "9565" "9566" "9567"
## [9568] "9568" "9569" "9570" "9571" "9572" "9573" "9574" "9575" "9576"
## [9577] "9577" "9578" "9579" "9580" "9581" "9582" "9583" "9584" "9585"
## [9586] "9586" "9587" "9588" "9589" "9590" "9591" "9592" "9593" "9594"
## [9595] "9595" "9596" "9597" "9598" "9599" "9600" "9601" "9602" "9603"
## [9604] "9604" "9605" "9606" "9607" "9608" "9609" "9610" "9611" "9612"
## [9613] "9613" "9614" "9615" "9616" "9617" "9618" "9619" "9620" "9621"
## [9622] "9622" "9623" "9624" "9625" "9626" "9627" "9628" "9629" "9630"
## [9631] "9631" "9632" "9633" "9634" "9635" "9636" "9637" "9638" "9639"
## [9640] "9640" "9641" "9642" "9643" "9644" "9645" "9646" "9647" "9648"
## [9649] "9649" "9650" "9651" "9652" "9653" "9654" "9655" "9656" "9657"
## [9658] "9658" "9659" "9660" "9661" "9662" "9663" "9664" "9665" "9666"
## [9667] "9667" "9668" "9669" "9670" "9671" "9672" "9673" "9674" "9675"
## [9676] "9676" "9677" "9678" "9679" "9680" "9681" "9682" "9683" "9684"
## [9685] "9685" "9686" "9687" "9688" "9689" "9690" "9691" "9692" "9693"
## [9694] "9694" "9695" "9696" "9697" "9698" "9699" "9700" "9701" "9702"
## [9703] "9703" "9704" "9705" "9706" "9707" "9708" "9709" "9710" "9711"
## [9712] "9712" "9713" "9714" "9715" "9716" "9717" "9718" "9719" "9720"
## [9721] "9721" "9722" "9723" "9724" "9725" "9726" "9727" "9728" "9729"
## [9730] "9730" "9731" "9732" "9733" "9734" "9735" "9736" "9737" "9738"
## [9739] "9739" "9740" "9741" "9742" "9743" "9744" "9745" "9746" "9747"
## [9748] "9748" "9749" "9750" "9751" "9752" "9753" "9754" "9755" "9756"
## [9757] "9757" "9758" "9759" "9760" "9761" "9762" "9763" "9764" "9765"
## [9766] "9766" "9767" "9768" "9769" "9770" "9771" "9772" "9773" "9774"
## [9775] "9775" "9776" "9777" "9778" "9779" "9780" "9781" "9782" "9783"
## [9784] "9784" "9785" "9786" "9787" "9788" "9789" "9790" "9791" "9792"
## [9793] "9793" "9794" "9795" "9796" "9797" "9798" "9799" "9800" "9801"
## [9802] "9802" "9803" "9804" "9805" "9806" "9807" "9808" "9809" "9810"
## [9811] "9811" "9812" "9813" "9814" "9815" "9816" "9817" "9818" "9819"
## [9820] "9820" "9821" "9822" "9823" "9824" "9825" "9826" "9827" "9828"
## [9829] "9829" "9830" "9831" "9832" "9833" "9834" "9835" "9836" "9837"
## [9838] "9838" "9839" "9840" "9841" "9842" "9843" "9844" "9845" "9846"
## [9847] "9847" "9848" "9849" "9850" "9851" "9852" "9853" "9854" "9855"
## [9856] "9856" "9857" "9858" "9859" "9860" "9861" "9862" "9863" "9864"
## [9865] "9865" "9866" "9867" "9868" "9869" "9870" "9871" "9872" "9873"
## [9874] "9874" "9875" "9876" "9877" "9878" "9879" "9880" "9881" "9882"
## [9883] "9883" "9884" "9885" "9886" "9887" "9888" "9889" "9890" "9891"
## [9892] "9892" "9893" "9894" "9895" "9896" "9897" "9898" "9899" "9900"
## [9901] "9901" "9902" "9903" "9904" "9905" "9906" "9907" "9908" "9909"
## [9910] "9910" "9911" "9912" "9913" "9914" "9915" "9916" "9917" "9918"
## [9919] "9919" "9920" "9921" "9922" "9923" "9924" "9925" "9926" "9927"
## [9928] "9928" "9929" "9930" "9931" "9932" "9933" "9934" "9935" "9936"
## [9937] "9937" "9938" "9939" "9940" "9941" "9942" "9943" "9944" "9945"
## [9946] "9946" "9947" "9948" "9949" "9950" "9951" "9952" "9953" "9954"
## [9955] "9955" "9956" "9957" "9958" "9959" "9960" "9961" "9962" "9963"
## [9964] "9964" "9965" "9966" "9967" "9968" "9969" "9970" "9971" "9972"
## [9973] "9973" "9974" "9975" "9976" "9977" "9978" "9979" "9980" "9981"
## [9982] "9982" "9983" "9984" "9985" "9986" "9987" "9988" "9989" "9990"
## [9991] "9991" "9992" "9993" "9994" "9995" "9996" "9997" "9998" "9999"
## [10000] "10000" "10001" "10002" "10003" "10004" "10005" "10006" "10007" "10008"
## [10009] "10009" "10010" "10011" "10012" "10013" "10014" "10015" "10016" "10017"
## [10018] "10018" "10019" "10020" "10021" "10022" "10023" "10024" "10025" "10026"
## [10027] "10027" "10028" "10029" "10030" "10031" "10032" "10033" "10034" "10035"
## [10036] "10036" "10037" "10038" "10039" "10040" "10041" "10042" "10043" "10044"
## [10045] "10045" "10046" "10047" "10048" "10049" "10050" "10051" "10052" "10053"
## [10054] "10054" "10055" "10056" "10057" "10058" "10059" "10060" "10061" "10062"
## [10063] "10063" "10064" "10065" "10066" "10067" "10068" "10069" "10070" "10071"
## [10072] "10072" "10073" "10074" "10075" "10076" "10077" "10078" "10079" "10080"
## [10081] "10081" "10082" "10083" "10084" "10085" "10086" "10087" "10088" "10089"
## [10090] "10090" "10091" "10092" "10093" "10094" "10095" "10096" "10097" "10098"
## [10099] "10099" "10100" "10101" "10102" "10103" "10104" "10105" "10106" "10107"
## [10108] "10108" "10109" "10110" "10111" "10112" "10113" "10114" "10115" "10116"
## [10117] "10117" "10118" "10119" "10120" "10121" "10122" "10123" "10124" "10125"
## [10126] "10126" "10127" "10128" "10129" "10130" "10131" "10132" "10133" "10134"
## [10135] "10135" "10136" "10137" "10138" "10139" "10140" "10141" "10142" "10143"
## [10144] "10144" "10145" "10146" "10147" "10148" "10149" "10150" "10151" "10152"
## [10153] "10153" "10154" "10155" "10156" "10157" "10158" "10159" "10160" "10161"
## [10162] "10162" "10163" "10164" "10165" "10166" "10167" "10168" "10169" "10170"
## [10171] "10171" "10172" "10173" "10174" "10175" "10176" "10177" "10178" "10179"
## [10180] "10180" "10181" "10182" "10183" "10184" "10185" "10186" "10187" "10188"
## [10189] "10189" "10190" "10191" "10192" "10193" "10194" "10195" "10196" "10197"
## [10198] "10198" "10199" "10200" "10201" "10202" "10203" "10204" "10205" "10206"
## [10207] "10207" "10208" "10209" "10210" "10211" "10212" "10213" "10214" "10215"
## [10216] "10216" "10217" "10218" "10219" "10220" "10221" "10222" "10223" "10224"
## [10225] "10225" "10226" "10227" "10228" "10229" "10230" "10231" "10232" "10233"
## [10234] "10234" "10235" "10236" "10237" "10238" "10239" "10240" "10241" "10242"
## [10243] "10243" "10244" "10245" "10246" "10247" "10248" "10249" "10250" "10251"
## [10252] "10252" "10253" "10254" "10255" "10256" "10257" "10258" "10259" "10260"
## [10261] "10261" "10262" "10263" "10264" "10265" "10266" "10267" "10268" "10269"
## [10270] "10270" "10271" "10272" "10273" "10274" "10275" "10276" "10277" "10278"
## [10279] "10279" "10280" "10281" "10282" "10283" "10284" "10285" "10286" "10287"
## [10288] "10288" "10289" "10290" "10291" "10292" "10293" "10294" "10295" "10296"
## [10297] "10297" "10298" "10299" "10300" "10301" "10302" "10303" "10304" "10305"
## [10306] "10306" "10307" "10308" "10309" "10310" "10311" "10312" "10313" "10314"
## [10315] "10315" "10316" "10317" "10318" "10319" "10320" "10321" "10322" "10323"
## [10324] "10324" "10325" "10326" "10327" "10328" "10329" "10330" "10331" "10332"
## [10333] "10333" "10334" "10335" "10336" "10337" "10338" "10339" "10340" "10341"
## [10342] "10342" "10343" "10344" "10345" "10346" "10347" "10348" "10349" "10350"
## [10351] "10351" "10352" "10353" "10354" "10355" "10356" "10357" "10358" "10359"
## [10360] "10360" "10361" "10362" "10363" "10364" "10365" "10366" "10367" "10368"
## [10369] "10369" "10370" "10371" "10372" "10373" "10374" "10375" "10376" "10377"
## [10378] "10378" "10379" "10380" "10381" "10382" "10383" "10384" "10385" "10386"
## [10387] "10387" "10388" "10389" "10390" "10391" "10392" "10393" "10394" "10395"
## [10396] "10396" "10397" "10398" "10399" "10400" "10401" "10402" "10403" "10404"
## [10405] "10405" "10406" "10407" "10408" "10409" "10410" "10411" "10412" "10413"
## [10414] "10414" "10415" "10416" "10417" "10418" "10419" "10420" "10421" "10422"
## [10423] "10423" "10424" "10425" "10426" "10427" "10428" "10429" "10430" "10431"
## [10432] "10432" "10433" "10434" "10435" "10436" "10437" "10438" "10439" "10440"
## [10441] "10441" "10442" "10443" "10444" "10445" "10446" "10447" "10448" "10449"
## [10450] "10450" "10451" "10452" "10453" "10454" "10455" "10456" "10457" "10458"
## [10459] "10459" "10460" "10461" "10462" "10463" "10464" "10465" "10466" "10467"
## [10468] "10468" "10469" "10470" "10471" "10472" "10473" "10474" "10475" "10476"
## [10477] "10477" "10478" "10479" "10480" "10481" "10482" "10483" "10484" "10485"
## [10486] "10486" "10487" "10488" "10489" "10490" "10491" "10492" "10493" "10494"
## [10495] "10495" "10496" "10497" "10498" "10499" "10500" "10501" "10502" "10503"
## [10504] "10504" "10505" "10506" "10507" "10508" "10509" "10510" "10511" "10512"
## [10513] "10513" "10514" "10515" "10516" "10517" "10518" "10519" "10520" "10521"
## [10522] "10522" "10523" "10524" "10525" "10526" "10527" "10528" "10529" "10530"
## [10531] "10531" "10532" "10533" "10534" "10535" "10536" "10537" "10538" "10539"
## [10540] "10540" "10541" "10542" "10543" "10544" "10545" "10546" "10547" "10548"
## [10549] "10549" "10550" "10551" "10552" "10553" "10554" "10555" "10556" "10557"
## [10558] "10558" "10559" "10560" "10561" "10562" "10563" "10564" "10565" "10566"
## [10567] "10567" "10568" "10569" "10570" "10571" "10572" "10573" "10574" "10575"
## [10576] "10576" "10577" "10578" "10579" "10580" "10581" "10582" "10583" "10584"
## [10585] "10585" "10586" "10587" "10588" "10589" "10590" "10591" "10592" "10593"
## [10594] "10594" "10595" "10596" "10597" "10598" "10599" "10600" "10601" "10602"
## [10603] "10603" "10604" "10605" "10606" "10607" "10608" "10609" "10610" "10611"
## [10612] "10612" "10613" "10614" "10615" "10616" "10617" "10618" "10619" "10620"
## [10621] "10621" "10622" "10623" "10624" "10625" "10626" "10627" "10628" "10629"
## [10630] "10630" "10631" "10632" "10633" "10634" "10635" "10636" "10637" "10638"
## [10639] "10639" "10640" "10641" "10642" "10643" "10644" "10645" "10646" "10647"
## [10648] "10648" "10649" "10650" "10651" "10652" "10653" "10654" "10655" "10656"
## [10657] "10657" "10658" "10659" "10660" "10661" "10662" "10663" "10664" "10665"
## [10666] "10666" "10667" "10668" "10669" "10670" "10671" "10672" "10673" "10674"
## [10675] "10675" "10676" "10677" "10678" "10679" "10680" "10681" "10682" "10683"
## [10684] "10684" "10685" "10686" "10687" "10688" "10689" "10690" "10691" "10692"
## [10693] "10693" "10694" "10695" "10696" "10697" "10698" "10699" "10700" "10701"
## [10702] "10702" "10703" "10704" "10705" "10706" "10707" "10708" "10709" "10710"
## [10711] "10711" "10712" "10713" "10714" "10715" "10716" "10717" "10718" "10719"
## [10720] "10720" "10721" "10722" "10723" "10724" "10725" "10726" "10727" "10728"
## [10729] "10729" "10730" "10731" "10732" "10733" "10734" "10735" "10736" "10737"
## [10738] "10738" "10739" "10740" "10741" "10742" "10743" "10744" "10745" "10746"
## [10747] "10747" "10748" "10749" "10750" "10751" "10752" "10753" "10754" "10755"
## [10756] "10756" "10757" "10758" "10759" "10760" "10761" "10762" "10763" "10764"
## [10765] "10765" "10766" "10767" "10768" "10769" "10770" "10771" "10772" "10773"
## [10774] "10774" "10775" "10776" "10777" "10778" "10779" "10780" "10781" "10782"
## [10783] "10783" "10784" "10785" "10786" "10787" "10788" "10789" "10790" "10791"
## [10792] "10792" "10793" "10794" "10795" "10796" "10797" "10798" "10799" "10800"
## [10801] "10801" "10802" "10803" "10804" "10805" "10806" "10807" "10808" "10809"
## [10810] "10810" "10811" "10812" "10813" "10814" "10815" "10816" "10817" "10818"
## [10819] "10819" "10820" "10821" "10822" "10823" "10824" "10825" "10826" "10827"
## [10828] "10828" "10829" "10830" "10831" "10832" "10833" "10834" "10835" "10836"
## [10837] "10837" "10838" "10839" "10840" "10841" "10842" "10843" "10844" "10845"
## [10846] "10846" "10847" "10848" "10849" "10850" "10851" "10852" "10853" "10854"
## [10855] "10855" "10856" "10857" "10858" "10859" "10860" "10861" "10862" "10863"
## [10864] "10864" "10865" "10866" "10867" "10868" "10869" "10870" "10871" "10872"
## [10873] "10873" "10874" "10875" "10876" "10877" "10878" "10879" "10880" "10881"
## [10882] "10882" "10883" "10884" "10885" "10886" "10887" "10888" "10889" "10890"
## [10891] "10891" "10892" "10893" "10894" "10895" "10896" "10897" "10898" "10899"
## [10900] "10900" "10901" "10902" "10903" "10904" "10905" "10906" "10907" "10908"
## [10909] "10909" "10910" "10911" "10912" "10913" "10914" "10915" "10916" "10917"
## [10918] "10918" "10919" "10920" "10921" "10922" "10923" "10924" "10925" "10926"
## [10927] "10927" "10928" "10929" "10930" "10931" "10932" "10933" "10934" "10935"
## [10936] "10936" "10937" "10938" "10939" "10940" "10941" "10942" "10943" "10944"
## [10945] "10945" "10946" "10947" "10948" "10949" "10950" "10951" "10952" "10953"
## [10954] "10954" "10955" "10956" "10957" "10958" "10959" "10960" "10961" "10962"
## [10963] "10963" "10964" "10965" "10966" "10967" "10968" "10969" "10970" "10971"
## [10972] "10972" "10973" "10974" "10975" "10976" "10977" "10978" "10979" "10980"
## [10981] "10981" "10982" "10983" "10984" "10985" "10986" "10987" "10988" "10989"
## [10990] "10990" "10991" "10992" "10993" "10994" "10995" "10996" "10997" "10998"
## [10999] "10999" "11000" "11001" "11002" "11003" "11004" "11005" "11006" "11007"
## [11008] "11008" "11009" "11010" "11011" "11012" "11013" "11014" "11015" "11016"
## [11017] "11017" "11018" "11019" "11020" "11021" "11022" "11023" "11024" "11025"
## [11026] "11026" "11027" "11028" "11029" "11030" "11031" "11032" "11033" "11034"
## [11035] "11035" "11036" "11037" "11038" "11039" "11040" "11041" "11042" "11043"
## [11044] "11044" "11045" "11046" "11047" "11048" "11049" "11050" "11051" "11052"
## [11053] "11053" "11054" "11055" "11056" "11057" "11058" "11059" "11060" "11061"
## [11062] "11062" "11063" "11064" "11065" "11066" "11067" "11068" "11069" "11070"
## [11071] "11071" "11072" "11073" "11074" "11075" "11076" "11077" "11078" "11079"
## [11080] "11080" "11081" "11082" "11083" "11084" "11085" "11086" "11087" "11088"
## [11089] "11089" "11090" "11091" "11092" "11093" "11094" "11095" "11096" "11097"
## [11098] "11098" "11099" "11100" "11101" "11102" "11103" "11104" "11105" "11106"
## [11107] "11107" "11108" "11109" "11110" "11111" "11112" "11113" "11114" "11115"
## [11116] "11116" "11117" "11118" "11119" "11120" "11121" "11122" "11123" "11124"
## [11125] "11125" "11126" "11127" "11128" "11129" "11130" "11131" "11132" "11133"
## [11134] "11134" "11135" "11136" "11137" "11138" "11139" "11140" "11141" "11142"
## [11143] "11143" "11144" "11145" "11146" "11147" "11148" "11149" "11150" "11151"
## [11152] "11152" "11153" "11154" "11155" "11156" "11157" "11158" "11159" "11160"
## [11161] "11161" "11162" "11163" "11164" "11165" "11166" "11167" "11168" "11169"
## [11170] "11170" "11171" "11172" "11173" "11174" "11175" "11176" "11177" "11178"
## [11179] "11179" "11180" "11181" "11182" "11183" "11184" "11185" "11186" "11187"
## [11188] "11188" "11189" "11190" "11191" "11192" "11193" "11194" "11195" "11196"
## [11197] "11197" "11198" "11199" "11200" "11201" "11202" "11203" "11204" "11205"
## [11206] "11206" "11207" "11208" "11209" "11210" "11211" "11212" "11213" "11214"
## [11215] "11215" "11216" "11217" "11218" "11219" "11220" "11221" "11222" "11223"
## [11224] "11224" "11225" "11226" "11227" "11228" "11229" "11230" "11231" "11232"
## [11233] "11233" "11234" "11235" "11236" "11237" "11238" "11239" "11240" "11241"
## [11242] "11242" "11243" "11244" "11245" "11246" "11247" "11248" "11249" "11250"
## [11251] "11251" "11252" "11253" "11254" "11255" "11256" "11257" "11258" "11259"
## [11260] "11260" "11261" "11262" "11263" "11264" "11265" "11266" "11267" "11268"
## [11269] "11269" "11270" "11271" "11272" "11273" "11274" "11275" "11276" "11277"
## [11278] "11278" "11279" "11280" "11281" "11282" "11283" "11284" "11285" "11286"
## [11287] "11287" "11288" "11289" "11290" "11291" "11292" "11293" "11294" "11295"
## [11296] "11296" "11297" "11298" "11299" "11300" "11301" "11302" "11303" "11304"
## [11305] "11305" "11306" "11307" "11308" "11309" "11310" "11311" "11312" "11313"
## [11314] "11314" "11315" "11316" "11317" "11318" "11319" "11320" "11321" "11322"
## [11323] "11323" "11324" "11325" "11326" "11327" "11328" "11329" "11330" "11331"
## [11332] "11332" "11333" "11334" "11335" "11336" "11337" "11338" "11339" "11340"
## [11341] "11341" "11342" "11343" "11344" "11345" "11346" "11347" "11348" "11349"
## [11350] "11350" "11351" "11352" "11353" "11354" "11355" "11356" "11357" "11358"
## [11359] "11359" "11360" "11361" "11362" "11363" "11364" "11365" "11366" "11367"
## [11368] "11368" "11369" "11370" "11371" "11372" "11373" "11374" "11375" "11376"
## [11377] "11377" "11378" "11379" "11380" "11381" "11382" "11383" "11384" "11385"
## [11386] "11386" "11387" "11388" "11389" "11390" "11391" "11392" "11393" "11394"
## [11395] "11395" "11396" "11397" "11398" "11399" "11400" "11401" "11402" "11403"
## [11404] "11404" "11405" "11406" "11407" "11408" "11409" "11410" "11411" "11412"
## [11413] "11413" "11414" "11415" "11416" "11417" "11418" "11419" "11420" "11421"
## [11422] "11422" "11423" "11424" "11425" "11426" "11427" "11428" "11429" "11430"
## [11431] "11431" "11432" "11433" "11434" "11435" "11436" "11437" "11438" "11439"
## [11440] "11440" "11441" "11442" "11443" "11444" "11445" "11446" "11447" "11448"
## [11449] "11449" "11450" "11451" "11452" "11453" "11454" "11455" "11456" "11457"
## [11458] "11458" "11459" "11460" "11461" "11462" "11463" "11464" "11465" "11466"
## [11467] "11467" "11468" "11469" "11470" "11471" "11472" "11473" "11474" "11475"
## [11476] "11476" "11477" "11478" "11479" "11480" "11481" "11482" "11483" "11484"
## [11485] "11485" "11486" "11487" "11488" "11489" "11490" "11491" "11492" "11493"
## [11494] "11494" "11495" "11496" "11497" "11498" "11499" "11500" "11501" "11502"
## [11503] "11503" "11504" "11505" "11506" "11507" "11508" "11509" "11510" "11511"
## [11512] "11512" "11513" "11514" "11515" "11516" "11517" "11518" "11519" "11520"
## [11521] "11521" "11522" "11523" "11524" "11525" "11526" "11527" "11528" "11529"
## [11530] "11530" "11531" "11532" "11533" "11534" "11535" "11536" "11537" "11538"
## [11539] "11539" "11540" "11541" "11542" "11543" "11544" "11545" "11546" "11547"
## [11548] "11548" "11549" "11550" "11551" "11552" "11553" "11554" "11555" "11556"
## [11557] "11557" "11558" "11559" "11560" "11561" "11562" "11563" "11564" "11565"
## [11566] "11566" "11567" "11568" "11569" "11570" "11571" "11572" "11573" "11574"
## [11575] "11575" "11576" "11577" "11578" "11579" "11580" "11581" "11582" "11583"
## [11584] "11584" "11585" "11586" "11587" "11588" "11589" "11590" "11591" "11592"
## [11593] "11593" "11594" "11595" "11596" "11597" "11598" "11599" "11600" "11601"
## [11602] "11602" "11603" "11604" "11605" "11606" "11607" "11608" "11609" "11610"
## [11611] "11611" "11612" "11613" "11614" "11615" "11616" "11617" "11618" "11619"
## [11620] "11620" "11621" "11622" "11623" "11624" "11625" "11626" "11627" "11628"
## [11629] "11629" "11630" "11631" "11632" "11633" "11634" "11635" "11636" "11637"
## [11638] "11638" "11639" "11640" "11641" "11642" "11643" "11644" "11645" "11646"
## [11647] "11647" "11648" "11649" "11650" "11651" "11652" "11653" "11654" "11655"
## [11656] "11656" "11657" "11658" "11659" "11660" "11661" "11662" "11663" "11664"
## [11665] "11665" "11666" "11667" "11668" "11669" "11670" "11671" "11672" "11673"
## [11674] "11674" "11675" "11676" "11677" "11678" "11679" "11680" "11681" "11682"
## [11683] "11683" "11684" "11685" "11686" "11687" "11688" "11689" "11690" "11691"
## [11692] "11692" "11693" "11694" "11695" "11696" "11697" "11698" "11699" "11700"
## [11701] "11701" "11702" "11703" "11704" "11705" "11706" "11707" "11708" "11709"
## [11710] "11710" "11711" "11712" "11713" "11714" "11715" "11716" "11717" "11718"
## [11719] "11719" "11720" "11721" "11722" "11723" "11724" "11725" "11726" "11727"
## [11728] "11728" "11729" "11730" "11731" "11732" "11733" "11734" "11735" "11736"
## [11737] "11737" "11738" "11739" "11740" "11741" "11742" "11743" "11744" "11745"
## [11746] "11746" "11747" "11748" "11749" "11750" "11751" "11752" "11753" "11754"
## [11755] "11755" "11756" "11757" "11758" "11759" "11760" "11761" "11762" "11763"
## [11764] "11764" "11765" "11766" "11767" "11768" "11769" "11770" "11771" "11772"
## [11773] "11773" "11774" "11775" "11776" "11777" "11778" "11779" "11780" "11781"
## [11782] "11782" "11783" "11784" "11785" "11786" "11787" "11788" "11789" "11790"
## [11791] "11791" "11792" "11793" "11794" "11795" "11796" "11797" "11798" "11799"
## [11800] "11800" "11801" "11802" "11803" "11804" "11805" "11806" "11807" "11808"
## [11809] "11809" "11810" "11811" "11812" "11813" "11814" "11815" "11816" "11817"
## [11818] "11818" "11819" "11820" "11821" "11822" "11823" "11824" "11825" "11826"
## [11827] "11827" "11828" "11829" "11830" "11831" "11832" "11833" "11834" "11835"
## [11836] "11836" "11837" "11838" "11839" "11840" "11841" "11842" "11843" "11844"
## [11845] "11845" "11846" "11847" "11848" "11849" "11850" "11851" "11852" "11853"
## [11854] "11854" "11855" "11856" "11857" "11858" "11859" "11860" "11861" "11862"
## [11863] "11863" "11864" "11865" "11866" "11867" "11868" "11869" "11870" "11871"
## [11872] "11872" "11873" "11874" "11875" "11876" "11877" "11878" "11879" "11880"
## [11881] "11881" "11882" "11883" "11884" "11885" "11886" "11887" "11888" "11889"
## [11890] "11890" "11891" "11892" "11893" "11894" "11895" "11896" "11897" "11898"
## [11899] "11899" "11900" "11901" "11902" "11903" "11904" "11905" "11906" "11907"
## [11908] "11908" "11909" "11910" "11911" "11912" "11913" "11914" "11915" "11916"
## [11917] "11917" "11918" "11919" "11920" "11921" "11922" "11923" "11924" "11925"
## [11926] "11926" "11927" "11928" "11929" "11930" "11931" "11932" "11933" "11934"
## [11935] "11935" "11936" "11937" "11938" "11939" "11940" "11941" "11942" "11943"
## [11944] "11944" "11945" "11946" "11947" "11948" "11949" "11950" "11951" "11952"
## [11953] "11953" "11954" "11955" "11956" "11957" "11958" "11959" "11960" "11961"
## [11962] "11962" "11963" "11964" "11965" "11966" "11967" "11968" "11969" "11970"
## [11971] "11971" "11972" "11973" "11974" "11975" "11976" "11977" "11978" "11979"
## [11980] "11980" "11981" "11982" "11983" "11984" "11985" "11986" "11987" "11988"
## [11989] "11989" "11990" "11991" "11992" "11993" "11994" "11995" "11996" "11997"
## [11998] "11998" "11999" "12000" "12001" "12002" "12003" "12004" "12005" "12006"
## [12007] "12007" "12008" "12009" "12010" "12011" "12012" "12013" "12014" "12015"
## [12016] "12016" "12017" "12018" "12019" "12020" "12021" "12022" "12023" "12024"
## [12025] "12025" "12026" "12027" "12028" "12029" "12030" "12031" "12032" "12033"
## [12034] "12034" "12035" "12036" "12037" "12038" "12039" "12040" "12041" "12042"
## [12043] "12043" "12044" "12045" "12046" "12047" "12048" "12049" "12050" "12051"
## [12052] "12052" "12053" "12054" "12055" "12056" "12057" "12058" "12059" "12060"
## [12061] "12061" "12062" "12063" "12064" "12065" "12066" "12067" "12068" "12069"
## [12070] "12070" "12071" "12072" "12073" "12074" "12075" "12076" "12077" "12078"
## [12079] "12079" "12080" "12081" "12082" "12083" "12084" "12085" "12086" "12087"
## [12088] "12088" "12089" "12090" "12091" "12092" "12093" "12094" "12095" "12096"
## [12097] "12097" "12098" "12099" "12100" "12101" "12102" "12103" "12104" "12105"
## [12106] "12106" "12107" "12108" "12109" "12110" "12111" "12112" "12113" "12114"
## [12115] "12115" "12116" "12117" "12118" "12119" "12120" "12121" "12122" "12123"
## [12124] "12124" "12125" "12126" "12127" "12128" "12129" "12130" "12131" "12132"
## [12133] "12133" "12134" "12135" "12136" "12137" "12138" "12139" "12140" "12141"
## [12142] "12142" "12143" "12144" "12145" "12146" "12147" "12148" "12149" "12150"
## [12151] "12151" "12152" "12153" "12154" "12155" "12156" "12157" "12158" "12159"
## [12160] "12160" "12161" "12162" "12163" "12164" "12165" "12166" "12167" "12168"
## [12169] "12169" "12170" "12171" "12172" "12173" "12174" "12175" "12176" "12177"
## [12178] "12178" "12179" "12180" "12181" "12182" "12183" "12184" "12185" "12186"
## [12187] "12187" "12188" "12189" "12190" "12191" "12192" "12193" "12194" "12195"
## [12196] "12196" "12197" "12198" "12199" "12200" "12201" "12202" "12203" "12204"
## [12205] "12205" "12206" "12207" "12208" "12209" "12210" "12211" "12212" "12213"
## [12214] "12214" "12215" "12216" "12217" "12218" "12219" "12220" "12221" "12222"
## [12223] "12223" "12224" "12225" "12226" "12227" "12228" "12229" "12230" "12231"
## [12232] "12232" "12233" "12234" "12235" "12236" "12237" "12238" "12239" "12240"
## [12241] "12241" "12242" "12243" "12244" "12245" "12246" "12247" "12248" "12249"
## [12250] "12250" "12251" "12252" "12253" "12254" "12255" "12256" "12257" "12258"
## [12259] "12259" "12260" "12261" "12262" "12263" "12264" "12265" "12266" "12267"
## [12268] "12268" "12269" "12270" "12271" "12272" "12273" "12274" "12275" "12276"
## [12277] "12277" "12278" "12279" "12280" "12281" "12282" "12283" "12284" "12285"
## [12286] "12286" "12287" "12288" "12289" "12290" "12291" "12292" "12293" "12294"
## [12295] "12295" "12296" "12297" "12298" "12299" "12300" "12301" "12302" "12303"
## [12304] "12304" "12305" "12306" "12307" "12308" "12309" "12310" "12311" "12312"
## [12313] "12313" "12314" "12315" "12316" "12317" "12318" "12319" "12320" "12321"
## [12322] "12322" "12323" "12324" "12325" "12326" "12327" "12328" "12329" "12330"
## [12331] "12331" "12332" "12333" "12334" "12335" "12336" "12337" "12338" "12339"
## [12340] "12340" "12341" "12342" "12343" "12344" "12345" "12346" "12347" "12348"
## [12349] "12349" "12350" "12351" "12352" "12353" "12354" "12355" "12356" "12357"
## [12358] "12358" "12359" "12360" "12361" "12362" "12363" "12364" "12365" "12366"
## [12367] "12367" "12368" "12369" "12370" "12371" "12372" "12373" "12374" "12375"
## [12376] "12376" "12377" "12378" "12379" "12380" "12381" "12382" "12383" "12384"
## [12385] "12385" "12386" "12387" "12388" "12389" "12390" "12391" "12392" "12393"
## [12394] "12394" "12395" "12396" "12397" "12398" "12399" "12400" "12401" "12402"
## [12403] "12403" "12404" "12405" "12406" "12407" "12408" "12409" "12410" "12411"
## [12412] "12412" "12413" "12414" "12415" "12416" "12417" "12418" "12419" "12420"
## [12421] "12421" "12422" "12423" "12424" "12425" "12426" "12427" "12428" "12429"
## [12430] "12430" "12431" "12432" "12433" "12434" "12435" "12436" "12437" "12438"
## [12439] "12439" "12440" "12441" "12442" "12443" "12444" "12445" "12446" "12447"
## [12448] "12448" "12449" "12450" "12451" "12452" "12453" "12454" "12455" "12456"
## [12457] "12457" "12458" "12459" "12460" "12461" "12462" "12463" "12464" "12465"
## [12466] "12466" "12467" "12468" "12469" "12470" "12471" "12472" "12473" "12474"
## [12475] "12475" "12476" "12477" "12478" "12479" "12480" "12481" "12482" "12483"
## [12484] "12484" "12485" "12486" "12487" "12488" "12489" "12490" "12491" "12492"
## [12493] "12493" "12494" "12495" "12496" "12497" "12498" "12499" "12500" "12501"
## [12502] "12502" "12503" "12504" "12505" "12506" "12507" "12508" "12509" "12510"
## [12511] "12511" "12512" "12513" "12514" "12515" "12516" "12517" "12518" "12519"
## [12520] "12520" "12521" "12522" "12523" "12524" "12525" "12526" "12527" "12528"
## [12529] "12529" "12530" "12531" "12532" "12533" "12534" "12535" "12536" "12537"
## [12538] "12538" "12539" "12540" "12541" "12542" "12543" "12544" "12545" "12546"
## [12547] "12547" "12548" "12549" "12550" "12551" "12552" "12553" "12554" "12555"
## [12556] "12556" "12557" "12558" "12559" "12560" "12561" "12562" "12563" "12564"
## [12565] "12565" "12566" "12567" "12568" "12569" "12570" "12571" "12572" "12573"
## [12574] "12574" "12575" "12576" "12577" "12578" "12579" "12580" "12581" "12582"
## [12583] "12583" "12584" "12585" "12586" "12587" "12588" "12589" "12590" "12591"
## [12592] "12592" "12593" "12594" "12595" "12596" "12597" "12598" "12599" "12600"
## [12601] "12601" "12602" "12603" "12604" "12605" "12606" "12607" "12608" "12609"
## [12610] "12610" "12611" "12612" "12613" "12614" "12615" "12616" "12617" "12618"
## [12619] "12619" "12620" "12621" "12622" "12623" "12624" "12625" "12626" "12627"
## [12628] "12628" "12629" "12630" "12631" "12632" "12633" "12634" "12635" "12636"
## [12637] "12637" "12638" "12639" "12640" "12641" "12642" "12643" "12644" "12645"
## [12646] "12646" "12647" "12648" "12649" "12650" "12651" "12652" "12653" "12654"
## [12655] "12655" "12656" "12657" "12658" "12659" "12660" "12661" "12662" "12663"
## [12664] "12664" "12665" "12666" "12667" "12668" "12669" "12670" "12671" "12672"
## [12673] "12673" "12674" "12675" "12676" "12677" "12678" "12679" "12680" "12681"
## [12682] "12682" "12683" "12684" "12685" "12686" "12687" "12688" "12689" "12690"
## [12691] "12691" "12692" "12693" "12694" "12695" "12696" "12697" "12698" "12699"
## [12700] "12700" "12701" "12702" "12703" "12704" "12705" "12706" "12707" "12708"
## [12709] "12709" "12710" "12711" "12712" "12713" "12714" "12715" "12716" "12717"
## [12718] "12718" "12719" "12720" "12721" "12722" "12723" "12724" "12725" "12726"
## [12727] "12727" "12728" "12729" "12730" "12731" "12732" "12733" "12734" "12735"
## [12736] "12736" "12737" "12738" "12739" "12740" "12741" "12742" "12743" "12744"
## [12745] "12745" "12746" "12747" "12748" "12749" "12750" "12751" "12752" "12753"
## [12754] "12754" "12755" "12756" "12757" "12758" "12759" "12760" "12761" "12762"
## [12763] "12763" "12764" "12765" "12766" "12767" "12768" "12769" "12770" "12771"
## [12772] "12772" "12773" "12774" "12775" "12776" "12777" "12778" "12779" "12780"
## [12781] "12781" "12782" "12783" "12784" "12785" "12786" "12787" "12788" "12789"
## [12790] "12790" "12791" "12792" "12793" "12794" "12795" "12796" "12797" "12798"
## [12799] "12799" "12800" "12801" "12802" "12803" "12804" "12805" "12806" "12807"
## [12808] "12808" "12809" "12810" "12811" "12812" "12813" "12814" "12815" "12816"
## [12817] "12817" "12818" "12819" "12820" "12821" "12822" "12823" "12824" "12825"
## [12826] "12826" "12827" "12828" "12829" "12830" "12831" "12832" "12833" "12834"
## [12835] "12835" "12836" "12837" "12838" "12839" "12840" "12841" "12842" "12843"
## [12844] "12844" "12845" "12846" "12847" "12848" "12849" "12850" "12851" "12852"
## [12853] "12853" "12854" "12855" "12856" "12857" "12858" "12859" "12860" "12861"
## [12862] "12862" "12863" "12864" "12865" "12866" "12867" "12868" "12869" "12870"
## [12871] "12871" "12872" "12873" "12874" "12875" "12876" "12877" "12878" "12879"
## [12880] "12880" "12881" "12882" "12883" "12884" "12885" "12886" "12887" "12888"
## [12889] "12889" "12890" "12891" "12892" "12893" "12894" "12895" "12896" "12897"
## [12898] "12898" "12899" "12900" "12901" "12902" "12903" "12904" "12905" "12906"
## [12907] "12907" "12908" "12909" "12910" "12911" "12912" "12913" "12914" "12915"
## [12916] "12916" "12917" "12918" "12919" "12920" "12921" "12922" "12923" "12924"
## [12925] "12925" "12926" "12927" "12928" "12929" "12930" "12931" "12932" "12933"
## [12934] "12934" "12935" "12936" "12937" "12938" "12939" "12940" "12941" "12942"
## [12943] "12943" "12944" "12945" "12946" "12947" "12948" "12949" "12950" "12951"
## [12952] "12952" "12953" "12954" "12955" "12956" "12957" "12958" "12959" "12960"
## [12961] "12961" "12962" "12963" "12964" "12965" "12966" "12967" "12968" "12969"
## [12970] "12970" "12971" "12972" "12973" "12974" "12975" "12976" "12977" "12978"
## [12979] "12979" "12980" "12981" "12982" "12983" "12984" "12985" "12986" "12987"
## [12988] "12988" "12989" "12990" "12991" "12992" "12993" "12994" "12995" "12996"
## [12997] "12997" "12998" "12999" "13000" "13001" "13002" "13003" "13004" "13005"
## [13006] "13006" "13007" "13008" "13009" "13010" "13011" "13012" "13013" "13014"
## [13015] "13015" "13016" "13017" "13018" "13019" "13020" "13021" "13022" "13023"
## [13024] "13024" "13025" "13026" "13027" "13028" "13029" "13030" "13031" "13032"
## [13033] "13033" "13034" "13035" "13036" "13037" "13038" "13039" "13040" "13041"
## [13042] "13042" "13043" "13044" "13045" "13046" "13047" "13048" "13049" "13050"
## [13051] "13051" "13052" "13053" "13054" "13055" "13056" "13057" "13058" "13059"
## [13060] "13060" "13061" "13062" "13063" "13064" "13065" "13066" "13067" "13068"
## [13069] "13069" "13070" "13071" "13072" "13073" "13074" "13075" "13076" "13077"
## [13078] "13078" "13079" "13080" "13081" "13082" "13083" "13084" "13085" "13086"
## [13087] "13087" "13088" "13089" "13090" "13091" "13092" "13093" "13094" "13095"
## [13096] "13096" "13097" "13098" "13099" "13100" "13101" "13102" "13103" "13104"
## [13105] "13105" "13106" "13107" "13108" "13109" "13110" "13111" "13112" "13113"
## [13114] "13114" "13115" "13116" "13117" "13118" "13119" "13120" "13121" "13122"
## [13123] "13123" "13124" "13125" "13126" "13127" "13128" "13129" "13130" "13131"
## [13132] "13132" "13133" "13134" "13135" "13136" "13137" "13138" "13139" "13140"
## [13141] "13141" "13142" "13143" "13144" "13145" "13146" "13147" "13148" "13149"
## [13150] "13150" "13151" "13152" "13153" "13154" "13155" "13156" "13157" "13158"
## [13159] "13159" "13160" "13161" "13162" "13163" "13164" "13165" "13166" "13167"
## [13168] "13168" "13169" "13170" "13171" "13172" "13173" "13174" "13175" "13176"
## [13177] "13177" "13178" "13179" "13180" "13181" "13182" "13183" "13184" "13185"
## [13186] "13186" "13187" "13188" "13189" "13190" "13191" "13192" "13193" "13194"
## [13195] "13195" "13196" "13197" "13198" "13199" "13200" "13201" "13202" "13203"
## [13204] "13204" "13205" "13206" "13207" "13208" "13209" "13210" "13211" "13212"
## [13213] "13213" "13214" "13215" "13216" "13217" "13218" "13219" "13220" "13221"
## [13222] "13222" "13223" "13224" "13225" "13226" "13227" "13228" "13229" "13230"
## [13231] "13231" "13232" "13233" "13234" "13235" "13236" "13237" "13238" "13239"
## [13240] "13240" "13241" "13242" "13243" "13244" "13245" "13246" "13247" "13248"
## [13249] "13249" "13250" "13251" "13252" "13253" "13254" "13255" "13256" "13257"
## [13258] "13258" "13259" "13260" "13261" "13262" "13263" "13264" "13265" "13266"
## [13267] "13267" "13268" "13269" "13270" "13271" "13272" "13273" "13274" "13275"
## [13276] "13276" "13277" "13278" "13279" "13280" "13281" "13282" "13283" "13284"
## [13285] "13285" "13286" "13287" "13288" "13289" "13290" "13291" "13292" "13293"
## [13294] "13294" "13295" "13296" "13297" "13298" "13299" "13300" "13301" "13302"
## [13303] "13303" "13304" "13305" "13306" "13307" "13308" "13309" "13310" "13311"
## [13312] "13312" "13313" "13314" "13315" "13316" "13317" "13318" "13319" "13320"
## [13321] "13321" "13322" "13323" "13324" "13325" "13326" "13327" "13328" "13329"
## [13330] "13330" "13331" "13332" "13333" "13334" "13335" "13336" "13337" "13338"
## [13339] "13339" "13340" "13341" "13342" "13343" "13344" "13345" "13346" "13347"
## [13348] "13348" "13349" "13350" "13351" "13352" "13353" "13354" "13355" "13356"
## [13357] "13357" "13358" "13359" "13360" "13361" "13362" "13363" "13364" "13365"
## [13366] "13366" "13367" "13368" "13369" "13370" "13371" "13372" "13373" "13374"
## [13375] "13375" "13376" "13377" "13378" "13379" "13380" "13381" "13382" "13383"
## [13384] "13384" "13385" "13386" "13387" "13388" "13389" "13390" "13391" "13392"
## [13393] "13393" "13394" "13395" "13396" "13397" "13398" "13399" "13400" "13401"
## [13402] "13402" "13403" "13404" "13405" "13406" "13407" "13408" "13409" "13410"
## [13411] "13411" "13412" "13413" "13414" "13415" "13416" "13417" "13418" "13419"
## [13420] "13420" "13421" "13422" "13423" "13424" "13425" "13426" "13427" "13428"
## [13429] "13429" "13430" "13431" "13432" "13433" "13434" "13435" "13436" "13437"
## [13438] "13438" "13439" "13440" "13441" "13442" "13443" "13444" "13445" "13446"
## [13447] "13447" "13448" "13449" "13450" "13451" "13452" "13453" "13454" "13455"
## [13456] "13456" "13457" "13458" "13459" "13460" "13461" "13462" "13463" "13464"
## [13465] "13465" "13466" "13467" "13468" "13469" "13470" "13471" "13472" "13473"
## [13474] "13474" "13475" "13476" "13477" "13478" "13479" "13480" "13481" "13482"
## [13483] "13483" "13484" "13485" "13486" "13487" "13488" "13489" "13490" "13491"
## [13492] "13492" "13493" "13494" "13495" "13496" "13497" "13498" "13499" "13500"
## [13501] "13501" "13502" "13503" "13504" "13505" "13506" "13507" "13508" "13509"
## [13510] "13510" "13511" "13512" "13513" "13514" "13515" "13516" "13517" "13518"
## [13519] "13519" "13520" "13521" "13522" "13523" "13524" "13525" "13526" "13527"
## [13528] "13528" "13529" "13530" "13531" "13532" "13533" "13534" "13535" "13536"
## [13537] "13537" "13538" "13539" "13540" "13541" "13542" "13543" "13544" "13545"
## [13546] "13546" "13547" "13548" "13549" "13550" "13551" "13552" "13553" "13554"
## [13555] "13555" "13556" "13557" "13558" "13559" "13560" "13561" "13562" "13563"
## [13564] "13564" "13565" "13566" "13567" "13568" "13569" "13570" "13571" "13572"
## [13573] "13573" "13574" "13575" "13576" "13577" "13578" "13579" "13580" "13581"
## [13582] "13582" "13583" "13584" "13585" "13586" "13587" "13588" "13589" "13590"
## [13591] "13591" "13592" "13593" "13594" "13595" "13596" "13597" "13598" "13599"
## [13600] "13600" "13601" "13602" "13603" "13604" "13605" "13606" "13607" "13608"
## [13609] "13609" "13610" "13611" "13612" "13613" "13614" "13615" "13616" "13617"
## [13618] "13618" "13619" "13620" "13621" "13622" "13623" "13624" "13625" "13626"
## [13627] "13627" "13628" "13629" "13630" "13631" "13632" "13633" "13634" "13635"
## [13636] "13636" "13637" "13638" "13639" "13640" "13641" "13642" "13643" "13644"
## [13645] "13645" "13646" "13647" "13648" "13649" "13650" "13651" "13652" "13653"
## [13654] "13654" "13655" "13656" "13657" "13658" "13659" "13660" "13661" "13662"
## [13663] "13663" "13664" "13665" "13666" "13667" "13668" "13669" "13670" "13671"
## [13672] "13672" "13673" "13674" "13675" "13676" "13677" "13678" "13679" "13680"
## [13681] "13681" "13682" "13683" "13684" "13685" "13686" "13687" "13688" "13689"
## [13690] "13690" "13691" "13692" "13693" "13694" "13695" "13696" "13697" "13698"
## [13699] "13699" "13700" "13701" "13702" "13703" "13704" "13705" "13706" "13707"
## [13708] "13708" "13709" "13710" "13711" "13712" "13713" "13714" "13715" "13716"
## [13717] "13717" "13718" "13719" "13720" "13721" "13722" "13723" "13724" "13725"
## [13726] "13726" "13727" "13728" "13729" "13730" "13731" "13732" "13733" "13734"
## [13735] "13735" "13736" "13737" "13738" "13739" "13740" "13741" "13742" "13743"
## [13744] "13744" "13745" "13746" "13747" "13748" "13749" "13750" "13751" "13752"
## [13753] "13753" "13754" "13755" "13756" "13757" "13758" "13759" "13760" "13761"
## [13762] "13762" "13763" "13764" "13765" "13766" "13767" "13768" "13769" "13770"
## [13771] "13771" "13772" "13773" "13774" "13775" "13776" "13777" "13778" "13779"
## [13780] "13780" "13781" "13782" "13783" "13784" "13785" "13786" "13787" "13788"
## [13789] "13789" "13790" "13791" "13792" "13793" "13794" "13795" "13796" "13797"
## [13798] "13798" "13799" "13800" "13801" "13802" "13803" "13804" "13805" "13806"
## [13807] "13807" "13808" "13809" "13810" "13811" "13812" "13813" "13814" "13815"
## [13816] "13816" "13817" "13818" "13819" "13820" "13821" "13822" "13823" "13824"
## [13825] "13825" "13826" "13827" "13828" "13829" "13830" "13831" "13832" "13833"
## [13834] "13834" "13835" "13836" "13837" "13838" "13839" "13840" "13841" "13842"
## [13843] "13843" "13844" "13845" "13846" "13847" "13848" "13849" "13850" "13851"
## [13852] "13852" "13853" "13854" "13855" "13856" "13857" "13858" "13859" "13860"
## [13861] "13861" "13862" "13863" "13864" "13865" "13866" "13867" "13868" "13869"
## [13870] "13870" "13871" "13872" "13873" "13874" "13875" "13876" "13877" "13878"
## [13879] "13879" "13880" "13881" "13882" "13883" "13884" "13885" "13886" "13887"
## [13888] "13888" "13889" "13890" "13891" "13892" "13893" "13894" "13895" "13896"
## [13897] "13897" "13898" "13899" "13900" "13901" "13902" "13903" "13904" "13905"
## [13906] "13906" "13907" "13908" "13909" "13910" "13911" "13912" "13913" "13914"
## [13915] "13915" "13916" "13917" "13918" "13919" "13920" "13921" "13922" "13923"
## [13924] "13924" "13925" "13926" "13927" "13928" "13929" "13930" "13931" "13932"
## [13933] "13933" "13934" "13935" "13936" "13937" "13938" "13939" "13940" "13941"
## [13942] "13942" "13943" "13944" "13945" "13946" "13947" "13948" "13949" "13950"
## [13951] "13951" "13952" "13953" "13954" "13955" "13956" "13957" "13958" "13959"
## [13960] "13960" "13961" "13962" "13963" "13964" "13965" "13966" "13967" "13968"
## [13969] "13969" "13970" "13971" "13972" "13973" "13974" "13975" "13976" "13977"
## [13978] "13978" "13979" "13980" "13981" "13982" "13983" "13984" "13985" "13986"
## [13987] "13987" "13988" "13989" "13990" "13991" "13992" "13993" "13994" "13995"
## [13996] "13996" "13997" "13998" "13999" "14000" "14001" "14002" "14003" "14004"
## [14005] "14005" "14006" "14007" "14008" "14009" "14010" "14011" "14012" "14013"
## [14014] "14014" "14015" "14016" "14017" "14018" "14019" "14020" "14021" "14022"
## [14023] "14023" "14024" "14025" "14026" "14027" "14028" "14029" "14030" "14031"
## [14032] "14032" "14033" "14034" "14035" "14036" "14037" "14038" "14039" "14040"
## [14041] "14041" "14042" "14043" "14044" "14045" "14046" "14047" "14048" "14049"
## [14050] "14050" "14051" "14052" "14053" "14054" "14055" "14056" "14057" "14058"
## [14059] "14059" "14060" "14061" "14062" "14063" "14064" "14065" "14066" "14067"
## [14068] "14068" "14069" "14070" "14071" "14072" "14073" "14074" "14075" "14076"
## [14077] "14077" "14078" "14079" "14080" "14081" "14082" "14083" "14084" "14085"
## [14086] "14086" "14087" "14088" "14089" "14090" "14091" "14092" "14093" "14094"
## [14095] "14095" "14096" "14097" "14098" "14099" "14100" "14101" "14102" "14103"
## [14104] "14104" "14105" "14106" "14107" "14108" "14109" "14110" "14111" "14112"
## [14113] "14113" "14114" "14115" "14116" "14117" "14118" "14119" "14120" "14121"
## [14122] "14122" "14123" "14124" "14125" "14126" "14127" "14128" "14129" "14130"
## [14131] "14131" "14132" "14133" "14134" "14135" "14136" "14137" "14138" "14139"
## [14140] "14140" "14141" "14142" "14143" "14144" "14145" "14146" "14147" "14148"
## [14149] "14149" "14150" "14151" "14152" "14153" "14154" "14155" "14156" "14157"
## [14158] "14158" "14159" "14160" "14161" "14162" "14163" "14164" "14165" "14166"
## [14167] "14167" "14168" "14169" "14170" "14171" "14172" "14173" "14174" "14175"
## [14176] "14176" "14177" "14178" "14179" "14180" "14181" "14182" "14183" "14184"
## [14185] "14185" "14186" "14187" "14188" "14189" "14190" "14191" "14192" "14193"
## [14194] "14194" "14195" "14196" "14197" "14198" "14199" "14200" "14201" "14202"
## [14203] "14203" "14204" "14205" "14206" "14207" "14208" "14209" "14210" "14211"
## [14212] "14212" "14213" "14214" "14215" "14216" "14217" "14218" "14219" "14220"
## [14221] "14221" "14222" "14223" "14224" "14225" "14226" "14227" "14228" "14229"
## [14230] "14230" "14231" "14232" "14233" "14234" "14235" "14236" "14237" "14238"
## [14239] "14239" "14240" "14241" "14242" "14243" "14244" "14245" "14246" "14247"
## [14248] "14248" "14249" "14250" "14251" "14252" "14253" "14254" "14255" "14256"
## [14257] "14257" "14258" "14259" "14260" "14261" "14262" "14263" "14264" "14265"
## [14266] "14266" "14267" "14268" "14269" "14270" "14271" "14272" "14273" "14274"
## [14275] "14275" "14276" "14277" "14278" "14279" "14280" "14281" "14282" "14283"
## [14284] "14284" "14285" "14286" "14287" "14288" "14289" "14290" "14291" "14292"
## [14293] "14293" "14294" "14295" "14296" "14297" "14298" "14299" "14300" "14301"
## [14302] "14302" "14303" "14304" "14305" "14306" "14307" "14308" "14309" "14310"
## [14311] "14311" "14312" "14313" "14314" "14315" "14316" "14317" "14318" "14319"
## [14320] "14320" "14321" "14322" "14323" "14324" "14325" "14326" "14327" "14328"
## [14329] "14329" "14330" "14331" "14332" "14333" "14334" "14335" "14336" "14337"
## [14338] "14338" "14339" "14340" "14341" "14342" "14343" "14344" "14345" "14346"
## [14347] "14347" "14348" "14349" "14350" "14351" "14352" "14353" "14354" "14355"
## [14356] "14356" "14357" "14358" "14359" "14360" "14361" "14362" "14363" "14364"
## [14365] "14365" "14366" "14367" "14368" "14369" "14370" "14371" "14372" "14373"
## [14374] "14374" "14375" "14376" "14377" "14378" "14379" "14380" "14381" "14382"
## [14383] "14383" "14384" "14385" "14386" "14387" "14388" "14389" "14390" "14391"
## [14392] "14392" "14393" "14394" "14395" "14396" "14397" "14398" "14399" "14400"
## [14401] "14401" "14402" "14403" "14404" "14405" "14406" "14407" "14408" "14409"
## [14410] "14410" "14411" "14412" "14413" "14414" "14415" "14416" "14417" "14418"
## [14419] "14419" "14420" "14421" "14422" "14423" "14424" "14425" "14426" "14427"
## [14428] "14428" "14429" "14430" "14431" "14432" "14433" "14434" "14435" "14436"
## [14437] "14437" "14438" "14439" "14440" "14441" "14442" "14443" "14444" "14445"
## [14446] "14446" "14447" "14448" "14449" "14450" "14451" "14452" "14453" "14454"
## [14455] "14455" "14456" "14457" "14458" "14459" "14460" "14461" "14462" "14463"
## [14464] "14464" "14465" "14466" "14467" "14468" "14469" "14470" "14471" "14472"
## [14473] "14473" "14474" "14475" "14476" "14477" "14478" "14479" "14480" "14481"
## [14482] "14482" "14483" "14484" "14485" "14486" "14487" "14488" "14489" "14490"
## [14491] "14491" "14492" "14493" "14494" "14495" "14496" "14497" "14498" "14499"
## [14500] "14500" "14501" "14502" "14503" "14504" "14505" "14506" "14507" "14508"
## [14509] "14509" "14510" "14511" "14512" "14513" "14514" "14515" "14516" "14517"
## [14518] "14518" "14519" "14520" "14521" "14522" "14523" "14524" "14525" "14526"
## [14527] "14527" "14528" "14529" "14530" "14531" "14532" "14533" "14534" "14535"
## [14536] "14536" "14537" "14538" "14539" "14540" "14541" "14542" "14543" "14544"
## [14545] "14545" "14546" "14547" "14548" "14549" "14550" "14551" "14552" "14553"
## [14554] "14554" "14555" "14556" "14557" "14558" "14559" "14560" "14561" "14562"
## [14563] "14563" "14564" "14565" "14566" "14567" "14568" "14569" "14570" "14571"
## [14572] "14572" "14573" "14574" "14575" "14576" "14577" "14578" "14579" "14580"
## [14581] "14581" "14582" "14583" "14584" "14585" "14586" "14587" "14588" "14589"
## [14590] "14590" "14591" "14592" "14593" "14594" "14595" "14596" "14597" "14598"
## [14599] "14599" "14600" "14601" "14602" "14603" "14604" "14605" "14606" "14607"
## [14608] "14608" "14609" "14610" "14611" "14612" "14613" "14614" "14615" "14616"
## [14617] "14617" "14618" "14619" "14620" "14621" "14622" "14623" "14624" "14625"
## [14626] "14626" "14627" "14628" "14629" "14630" "14631" "14632" "14633" "14634"
## [14635] "14635" "14636" "14637" "14638" "14639" "14640" "14641" "14642" "14643"
## [14644] "14644" "14645" "14646" "14647" "14648" "14649" "14650" "14651" "14652"
## [14653] "14653" "14654" "14655" "14656" "14657" "14658" "14659" "14660" "14661"
## [14662] "14662" "14663" "14664" "14665" "14666" "14667" "14668" "14669" "14670"
## [14671] "14671" "14672" "14673" "14674" "14675" "14676" "14677" "14678" "14679"
## [14680] "14680" "14681" "14682" "14683" "14684" "14685" "14686" "14687" "14688"
## [14689] "14689" "14690" "14691" "14692" "14693" "14694" "14695" "14696" "14697"
## [14698] "14698" "14699" "14700" "14701" "14702" "14703" "14704" "14705" "14706"
## [14707] "14707" "14708" "14709" "14710" "14711" "14712" "14713" "14714" "14715"
## [14716] "14716" "14717" "14718" "14719" "14720" "14721" "14722" "14723" "14724"
## [14725] "14725" "14726" "14727" "14728" "14729" "14730" "14731" "14732" "14733"
## [14734] "14734" "14735" "14736" "14737" "14738" "14739" "14740" "14741" "14742"
## [14743] "14743" "14744" "14745" "14746" "14747" "14748" "14749" "14750" "14751"
## [14752] "14752" "14753" "14754" "14755" "14756" "14757" "14758" "14759" "14760"
## [14761] "14761" "14762" "14763" "14764" "14765" "14766" "14767" "14768" "14769"
## [14770] "14770" "14771" "14772" "14773" "14774" "14775" "14776" "14777" "14778"
## [14779] "14779" "14780" "14781" "14782" "14783" "14784" "14785" "14786" "14787"
## [14788] "14788" "14789" "14790" "14791" "14792" "14793" "14794" "14795" "14796"
## [14797] "14797" "14798" "14799" "14800" "14801" "14802" "14803" "14804" "14805"
## [14806] "14806" "14807" "14808" "14809" "14810" "14811" "14812" "14813" "14814"
## [14815] "14815" "14816" "14817" "14818" "14819" "14820" "14821" "14822" "14823"
## [14824] "14824" "14825" "14826" "14827" "14828" "14829" "14830" "14831" "14832"
## [14833] "14833" "14834" "14835" "14836" "14837" "14838" "14839" "14840" "14841"
## [14842] "14842" "14843" "14844" "14845" "14846" "14847" "14848" "14849" "14850"
## [14851] "14851" "14852" "14853" "14854" "14855" "14856" "14857" "14858" "14859"
## [14860] "14860" "14861" "14862" "14863" "14864" "14865" "14866" "14867" "14868"
## [14869] "14869" "14870" "14871" "14872" "14873" "14874" "14875" "14876" "14877"
## [14878] "14878" "14879" "14880" "14881" "14882" "14883" "14884" "14885" "14886"
## [14887] "14887" "14888" "14889" "14890" "14891" "14892" "14893" "14894" "14895"
## [14896] "14896" "14897" "14898" "14899" "14900" "14901" "14902" "14903" "14904"
## [14905] "14905" "14906" "14907" "14908" "14909" "14910" "14911" "14912" "14913"
## [14914] "14914" "14915" "14916" "14917" "14918" "14919" "14920" "14921" "14922"
## [14923] "14923" "14924" "14925" "14926" "14927" "14928" "14929" "14930" "14931"
## [14932] "14932" "14933" "14934" "14935" "14936" "14937" "14938" "14939" "14940"
## [14941] "14941" "14942" "14943" "14944" "14945" "14946" "14947" "14948" "14949"
## [14950] "14950" "14951" "14952" "14953" "14954" "14955" "14956" "14957" "14958"
## [14959] "14959" "14960" "14961" "14962" "14963" "14964" "14965" "14966" "14967"
## [14968] "14968" "14969" "14970" "14971" "14972" "14973" "14974" "14975" "14976"
## [14977] "14977" "14978" "14979" "14980" "14981" "14982" "14983" "14984" "14985"
## [14986] "14986" "14987" "14988" "14989" "14990" "14991" "14992" "14993" "14994"
## [14995] "14995" "14996" "14997" "14998" "14999" "15000" "15001" "15002" "15003"
## [15004] "15004" "15005" "15006" "15007" "15008" "15009" "15010" "15011" "15012"
## [15013] "15013" "15014" "15015" "15016" "15017" "15018" "15019" "15020" "15021"
## [15022] "15022" "15023" "15024" "15025" "15026" "15027" "15028" "15029" "15030"
## [15031] "15031" "15032" "15033" "15034" "15035" "15036" "15037" "15038" "15039"
## [15040] "15040" "15041" "15042" "15043" "15044" "15045" "15046" "15047" "15048"
## [15049] "15049" "15050" "15051" "15052" "15053" "15054" "15055" "15056" "15057"
## [15058] "15058" "15059" "15060" "15061" "15062" "15063" "15064" "15065" "15066"
## [15067] "15067" "15068" "15069" "15070" "15071" "15072" "15073" "15074" "15075"
## [15076] "15076" "15077" "15078" "15079" "15080" "15081" "15082" "15083" "15084"
## [15085] "15085" "15086" "15087" "15088" "15089" "15090" "15091" "15092" "15093"
## [15094] "15094" "15095" "15096" "15097" "15098" "15099" "15100" "15101" "15102"
## [15103] "15103" "15104" "15105" "15106" "15107" "15108" "15109" "15110" "15111"
## [15112] "15112" "15113" "15114" "15115" "15116" "15117" "15118" "15119" "15120"
## [15121] "15121" "15122" "15123" "15124" "15125" "15126" "15127" "15128" "15129"
## [15130] "15130" "15131" "15132" "15133" "15134" "15135" "15136" "15137" "15138"
## [15139] "15139" "15140" "15141" "15142" "15143" "15144" "15145" "15146" "15147"
## [15148] "15148" "15149" "15150" "15151" "15152" "15153" "15154" "15155" "15156"
## [15157] "15157" "15158" "15159" "15160" "15161" "15162" "15163" "15164" "15165"
## [15166] "15166" "15167" "15168" "15169" "15170" "15171" "15172" "15173" "15174"
## [15175] "15175" "15176" "15177" "15178" "15179" "15180" "15181" "15182" "15183"
## [15184] "15184" "15185" "15186" "15187" "15188" "15189" "15190" "15191" "15192"
## [15193] "15193" "15194" "15195" "15196" "15197" "15198" "15199" "15200" "15201"
## [15202] "15202" "15203" "15204" "15205" "15206" "15207" "15208" "15209" "15210"
## [15211] "15211" "15212" "15213" "15214" "15215" "15216" "15217" "15218" "15219"
## [15220] "15220" "15221" "15222" "15223" "15224" "15225" "15226" "15227" "15228"
## [15229] "15229" "15230" "15231" "15232" "15233" "15234" "15235" "15236" "15237"
## [15238] "15238" "15239" "15240" "15241" "15242" "15243" "15244" "15245" "15246"
## [15247] "15247" "15248" "15249" "15250" "15251" "15252" "15253" "15254" "15255"
## [15256] "15256" "15257" "15258" "15259" "15260" "15261" "15262" "15263" "15264"
## [15265] "15265" "15266" "15267" "15268" "15269" "15270" "15271" "15272" "15273"
## [15274] "15274" "15275" "15276" "15277" "15278" "15279" "15280" "15281" "15282"
## [15283] "15283" "15284" "15285" "15286" "15287" "15288" "15289" "15290" "15291"
## [15292] "15292" "15293" "15294" "15295" "15296" "15297" "15298" "15299" "15300"
## [15301] "15301" "15302" "15303" "15304" "15305" "15306" "15307" "15308" "15309"
## [15310] "15310" "15311" "15312" "15313" "15314" "15315" "15316" "15317" "15318"
## [15319] "15319" "15320" "15321" "15322" "15323" "15324" "15325" "15326" "15327"
## [15328] "15328" "15329" "15330" "15331" "15332" "15333" "15334" "15335" "15336"
## [15337] "15337" "15338" "15339" "15340" "15341" "15342" "15343" "15344" "15345"
## [15346] "15346" "15347" "15348" "15349" "15350" "15351" "15352" "15353" "15354"
## [15355] "15355" "15356" "15357" "15358" "15359" "15360" "15361" "15362" "15363"
## [15364] "15364" "15365" "15366" "15367" "15368" "15369" "15370" "15371" "15372"
## [15373] "15373" "15374" "15375" "15376" "15377" "15378" "15379" "15380" "15381"
## [15382] "15382" "15383" "15384" "15385" "15386" "15387" "15388" "15389" "15390"
## [15391] "15391" "15392" "15393" "15394" "15395" "15396" "15397" "15398" "15399"
## [15400] "15400" "15401" "15402" "15403" "15404" "15405" "15406" "15407" "15408"
## [15409] "15409" "15410" "15411" "15412" "15413" "15414" "15415" "15416" "15417"
## [15418] "15418" "15419" "15420" "15421" "15422" "15423" "15424" "15425" "15426"
## [15427] "15427" "15428" "15429" "15430" "15431" "15432" "15433" "15434" "15435"
## [15436] "15436" "15437" "15438" "15439" "15440" "15441" "15442" "15443" "15444"
## [15445] "15445" "15446" "15447" "15448" "15449" "15450" "15451" "15452" "15453"
## [15454] "15454" "15455" "15456" "15457" "15458" "15459" "15460" "15461" "15462"
## [15463] "15463" "15464" "15465" "15466" "15467" "15468" "15469" "15470" "15471"
## [15472] "15472" "15473" "15474" "15475" "15476" "15477" "15478" "15479" "15480"
## [15481] "15481" "15482" "15483" "15484" "15485" "15486" "15487" "15488" "15489"
## [15490] "15490" "15491" "15492" "15493" "15494" "15495" "15496" "15497" "15498"
## [15499] "15499" "15500" "15501" "15502" "15503" "15504" "15505" "15506" "15507"
## [15508] "15508" "15509" "15510" "15511" "15512" "15513" "15514" "15515" "15516"
## [15517] "15517" "15518" "15519" "15520" "15521" "15522" "15523" "15524" "15525"
## [15526] "15526" "15527" "15528" "15529" "15530" "15531" "15532" "15533" "15534"
## [15535] "15535" "15536" "15537" "15538" "15539" "15540" "15541" "15542" "15543"
## [15544] "15544" "15545" "15546" "15547" "15548" "15549" "15550" "15551" "15552"
## [15553] "15553" "15554" "15555" "15556" "15557" "15558" "15559" "15560" "15561"
## [15562] "15562" "15563" "15564" "15565" "15566" "15567" "15568" "15569" "15570"
## [15571] "15571" "15572" "15573" "15574" "15575" "15576" "15577" "15578" "15579"
## [15580] "15580" "15581" "15582" "15583" "15584" "15585" "15586" "15587" "15588"
## [15589] "15589" "15590" "15591" "15592" "15593" "15594" "15595" "15596" "15597"
## [15598] "15598" "15599" "15600" "15601" "15602" "15603" "15604" "15605" "15606"
## [15607] "15607" "15608" "15609" "15610" "15611" "15612" "15613" "15614" "15615"
## [15616] "15616" "15617" "15618" "15619" "15620" "15621" "15622" "15623" "15624"
## [15625] "15625" "15626" "15627" "15628" "15629" "15630" "15631" "15632" "15633"
## [15634] "15634" "15635" "15636" "15637" "15638" "15639" "15640" "15641" "15642"
## [15643] "15643" "15644" "15645" "15646" "15647" "15648" "15649" "15650" "15651"
## [15652] "15652" "15653" "15654" "15655" "15656" "15657" "15658" "15659" "15660"
## [15661] "15661" "15662" "15663" "15664" "15665" "15666" "15667" "15668" "15669"
## [15670] "15670" "15671" "15672" "15673" "15674" "15675" "15676" "15677" "15678"
## [15679] "15679" "15680" "15681" "15682" "15683" "15684" "15685" "15686" "15687"
## [15688] "15688" "15689" "15690" "15691" "15692" "15693" "15694" "15695" "15696"
## [15697] "15697" "15698" "15699" "15700" "15701" "15702" "15703" "15704" "15705"
## [15706] "15706" "15707" "15708" "15709" "15710" "15711" "15712" "15713" "15714"
## [15715] "15715" "15716" "15717" "15718" "15719" "15720" "15721" "15722" "15723"
## [15724] "15724" "15725" "15726" "15727" "15728" "15729" "15730" "15731" "15732"
## [15733] "15733" "15734" "15735" "15736" "15737" "15738" "15739" "15740" "15741"
## [15742] "15742" "15743" "15744" "15745" "15746" "15747" "15748" "15749" "15750"
## [15751] "15751" "15752" "15753" "15754" "15755" "15756" "15757" "15758" "15759"
## [15760] "15760" "15761" "15762" "15763" "15764" "15765" "15766" "15767" "15768"
## [15769] "15769" "15770" "15771" "15772" "15773" "15774" "15775" "15776" "15777"
## [15778] "15778" "15779" "15780" "15781" "15782" "15783" "15784" "15785" "15786"
## [15787] "15787" "15788" "15789" "15790" "15791" "15792" "15793" "15794" "15795"
## [15796] "15796" "15797" "15798" "15799" "15800" "15801" "15802" "15803" "15804"
## [15805] "15805" "15806" "15807" "15808" "15809" "15810" "15811" "15812" "15813"
## [15814] "15814" "15815" "15816" "15817" "15818" "15819" "15820" "15821" "15822"
## [15823] "15823" "15824" "15825" "15826" "15827" "15828" "15829" "15830" "15831"
## [15832] "15832" "15833" "15834" "15835" "15836" "15837" "15838" "15839" "15840"
## [15841] "15841" "15842" "15843" "15844" "15845" "15846" "15847" "15848" "15849"
## [15850] "15850" "15851" "15852" "15853" "15854" "15855" "15856" "15857" "15858"
## [15859] "15859" "15860" "15861" "15862" "15863" "15864" "15865" "15866" "15867"
## [15868] "15868" "15869" "15870" "15871" "15872" "15873" "15874" "15875" "15876"
## [15877] "15877" "15878" "15879" "15880" "15881" "15882" "15883" "15884" "15885"
## [15886] "15886" "15887" "15888" "15889" "15890" "15891" "15892" "15893" "15894"
## [15895] "15895" "15896" "15897" "15898" "15899" "15900" "15901" "15902" "15903"
## [15904] "15904" "15905" "15906" "15907" "15908" "15909" "15910" "15911" "15912"
## [15913] "15913" "15914" "15915" "15916" "15917" "15918" "15919" "15920" "15921"
## [15922] "15922" "15923" "15924" "15925" "15926" "15927" "15928" "15929" "15930"
## [15931] "15931" "15932" "15933" "15934" "15935" "15936" "15937" "15938" "15939"
## [15940] "15940" "15941" "15942" "15943" "15944" "15945" "15946" "15947" "15948"
## [15949] "15949" "15950" "15951" "15952" "15953" "15954" "15955" "15956" "15957"
## [15958] "15958" "15959" "15960" "15961" "15962" "15963" "15964" "15965" "15966"
## [15967] "15967" "15968" "15969" "15970" "15971" "15972" "15973" "15974" "15975"
## [15976] "15976" "15977" "15978" "15979" "15980" "15981" "15982" "15983" "15984"
## [15985] "15985" "15986" "15987" "15988" "15989" "15990" "15991" "15992" "15993"
## [15994] "15994" "15995" "15996" "15997" "15998" "15999" "16000" "16001" "16002"
## [16003] "16003" "16004" "16005" "16006" "16007" "16008" "16009" "16010" "16011"
## [16012] "16012" "16013" "16014" "16015" "16016" "16017" "16018" "16019" "16020"
## [16021] "16021" "16022" "16023" "16024" "16025" "16026" "16027" "16028" "16029"
## [16030] "16030" "16031" "16032" "16033" "16034" "16035" "16036" "16037" "16038"
## [16039] "16039" "16040" "16041" "16042" "16043" "16044" "16045" "16046" "16047"
## [16048] "16048" "16049" "16050" "16051" "16052" "16053" "16054" "16055" "16056"
## [16057] "16057" "16058" "16059" "16060" "16061" "16062" "16063" "16064" "16065"
## [16066] "16066" "16067" "16068" "16069" "16070" "16071" "16072" "16073" "16074"
## [16075] "16075" "16076" "16077" "16078" "16079" "16080" "16081" "16082" "16083"
## [16084] "16084" "16085" "16086" "16087" "16088" "16089" "16090" "16091" "16092"
## [16093] "16093" "16094" "16095" "16096" "16097" "16098" "16099" "16100" "16101"
## [16102] "16102" "16103" "16104" "16105" "16106" "16107" "16108" "16109" "16110"
## [16111] "16111" "16112" "16113" "16114" "16115" "16116" "16117" "16118" "16119"
## [16120] "16120" "16121" "16122" "16123" "16124" "16125" "16126" "16127" "16128"
## [16129] "16129" "16130" "16131" "16132" "16133" "16134" "16135" "16136" "16137"
## [16138] "16138" "16139" "16140" "16141" "16142" "16143" "16144" "16145" "16146"
## [16147] "16147" "16148" "16149" "16150" "16151" "16152" "16153" "16154" "16155"
## [16156] "16156" "16157" "16158" "16159" "16160" "16161" "16162" "16163" "16164"
## [16165] "16165" "16166" "16167" "16168" "16169" "16170" "16171" "16172" "16173"
## [16174] "16174" "16175" "16176" "16177" "16178" "16179" "16180" "16181" "16182"
## [16183] "16183" "16184" "16185" "16186" "16187" "16188" "16189" "16190" "16191"
## [16192] "16192" "16193" "16194" "16195" "16196" "16197" "16198" "16199" "16200"
## [16201] "16201" "16202" "16203" "16204" "16205" "16206" "16207" "16208" "16209"
## [16210] "16210" "16211" "16212" "16213" "16214" "16215" "16216" "16217" "16218"
## [16219] "16219" "16220" "16221" "16222" "16223" "16224" "16225" "16226" "16227"
## [16228] "16228" "16229" "16230" "16231" "16232" "16233" "16234" "16235" "16236"
## [16237] "16237" "16238" "16239" "16240" "16241" "16242" "16243" "16244" "16245"
## [16246] "16246" "16247" "16248" "16249" "16250" "16251" "16252" "16253" "16254"
## [16255] "16255" "16256" "16257" "16258" "16259" "16260" "16261" "16262" "16263"
## [16264] "16264" "16265" "16266" "16267" "16268" "16269" "16270" "16271" "16272"
## [16273] "16273" "16274" "16275" "16276" "16277" "16278" "16279" "16280" "16281"
## [16282] "16282" "16283" "16284" "16285" "16286" "16287" "16288" "16289" "16290"
## [16291] "16291" "16292" "16293" "16294" "16295" "16296" "16297" "16298" "16299"
## [16300] "16300" "16301" "16302" "16303" "16304" "16305" "16306" "16307" "16308"
## [16309] "16309" "16310" "16311" "16312" "16313" "16314" "16315" "16316" "16317"
## [16318] "16318" "16319" "16320" "16321" "16322" "16323" "16324" "16325" "16326"
## [16327] "16327" "16328" "16329" "16330" "16331" "16332" "16333" "16334" "16335"
## [16336] "16336" "16337" "16338" "16339" "16340" "16341" "16342" "16343" "16344"
## [16345] "16345" "16346" "16347" "16348" "16349" "16350" "16351" "16352" "16353"
## [16354] "16354" "16355" "16356" "16357" "16358" "16359" "16360" "16361" "16362"
## [16363] "16363" "16364" "16365" "16366" "16367" "16368" "16369" "16370" "16371"
## [16372] "16372" "16373" "16374" "16375" "16376" "16377" "16378" "16379" "16380"
## [16381] "16381" "16382" "16383" "16384" "16385" "16386" "16387" "16388" "16389"
## [16390] "16390" "16391" "16392" "16393" "16394" "16395" "16396" "16397" "16398"
## [16399] "16399" "16400" "16401" "16402" "16403" "16404" "16405" "16406" "16407"
## [16408] "16408" "16409" "16410" "16411" "16412" "16413" "16414" "16415" "16416"
## [16417] "16417" "16418" "16419" "16420" "16421" "16422" "16423" "16424" "16425"
## [16426] "16426" "16427" "16428" "16429" "16430" "16431" "16432" "16433" "16434"
## [16435] "16435" "16436" "16437" "16438" "16439" "16440" "16441" "16442" "16443"
## [16444] "16444" "16445" "16446" "16447" "16448" "16449" "16450" "16451" "16452"
## [16453] "16453" "16454" "16455" "16456" "16457" "16458" "16459" "16460" "16461"
## [16462] "16462" "16463" "16464" "16465" "16466" "16467" "16468" "16469" "16470"
## [16471] "16471" "16472" "16473" "16474" "16475" "16476" "16477" "16478" "16479"
## [16480] "16480" "16481" "16482" "16483" "16484" "16485" "16486" "16487" "16488"
## [16489] "16489" "16490" "16491" "16492" "16493" "16494" "16495" "16496" "16497"
## [16498] "16498" "16499" "16500" "16501" "16502" "16503" "16504" "16505" "16506"
## [16507] "16507" "16508" "16509" "16510" "16511" "16512" "16513" "16514" "16515"
## [16516] "16516" "16517" "16518" "16519" "16520" "16521" "16522" "16523" "16524"
## [16525] "16525" "16526" "16527" "16528" "16529" "16530" "16531" "16532" "16533"
## [16534] "16534" "16535" "16536" "16537" "16538" "16539" "16540" "16541" "16542"
## [16543] "16543" "16544" "16545" "16546" "16547" "16548" "16549" "16550" "16551"
## [16552] "16552" "16553" "16554" "16555" "16556" "16557" "16558" "16559" "16560"
## [16561] "16561" "16562" "16563" "16564" "16565" "16566" "16567" "16568" "16569"
## [16570] "16570" "16571" "16572" "16573" "16574" "16575" "16576" "16577" "16578"
## [16579] "16579" "16580" "16581" "16582" "16583" "16584" "16585" "16586" "16587"
## [16588] "16588" "16589" "16590" "16591" "16592" "16593" "16594" "16595" "16596"
## [16597] "16597" "16598" "16599" "16600" "16601" "16602" "16603" "16604" "16605"
## [16606] "16606" "16607" "16608" "16609" "16610" "16611" "16612" "16613" "16614"
## [16615] "16615" "16616" "16617" "16618" "16619" "16620" "16621" "16622" "16623"
## [16624] "16624" "16625" "16626" "16627" "16628" "16629" "16630" "16631" "16632"
## [16633] "16633" "16634" "16635" "16636" "16637" "16638" "16639" "16640" "16641"
## [16642] "16642" "16643" "16644" "16645" "16646" "16647" "16648" "16649" "16650"
## [16651] "16651" "16652" "16653" "16654" "16655" "16656" "16657" "16658" "16659"
## [16660] "16660" "16661" "16662" "16663" "16664" "16665" "16666" "16667" "16668"
## [16669] "16669" "16670" "16671" "16672" "16673" "16674" "16675" "16676" "16677"
## [16678] "16678" "16679" "16680" "16681" "16682" "16683" "16684" "16685" "16686"
## [16687] "16687" "16688" "16689" "16690" "16691" "16692" "16693" "16694" "16695"
## [16696] "16696" "16697" "16698" "16699" "16700" "16701" "16702" "16703" "16704"
## [16705] "16705" "16706" "16707" "16708" "16709" "16710" "16711" "16712" "16713"
## [16714] "16714" "16715" "16716" "16717" "16718" "16719" "16720" "16721" "16722"
## [16723] "16723" "16724" "16725" "16726" "16727" "16728" "16729" "16730" "16731"
## [16732] "16732" "16733" "16734" "16735" "16736" "16737" "16738" "16739" "16740"
## [16741] "16741" "16742" "16743" "16744" "16745" "16746" "16747" "16748" "16749"
## [16750] "16750" "16751" "16752" "16753" "16754" "16755" "16756" "16757" "16758"
## [16759] "16759" "16760" "16761" "16762" "16763" "16764" "16765" "16766" "16767"
## [16768] "16768" "16769" "16770" "16771" "16772" "16773" "16774" "16775" "16776"
## [16777] "16777" "16778" "16779" "16780" "16781" "16782" "16783" "16784" "16785"
## [16786] "16786" "16787" "16788" "16789" "16790" "16791" "16792" "16793" "16794"
## [16795] "16795" "16796" "16797" "16798" "16799" "16800" "16801" "16802" "16803"
## [16804] "16804" "16805" "16806" "16807" "16808" "16809" "16810" "16811" "16812"
## [16813] "16813" "16814" "16815" "16816" "16817" "16818" "16819" "16820" "16821"
## [16822] "16822" "16823" "16824" "16825" "16826" "16827" "16828" "16829" "16830"
## [16831] "16831" "16832" "16833" "16834" "16835" "16836" "16837" "16838" "16839"
## [16840] "16840" "16841" "16842" "16843" "16844" "16845" "16846" "16847" "16848"
## [16849] "16849" "16850" "16851" "16852" "16853" "16854" "16855" "16856" "16857"
## [16858] "16858" "16859" "16860" "16861" "16862" "16863" "16864" "16865" "16866"
## [16867] "16867" "16868" "16869" "16870" "16871" "16872" "16873" "16874" "16875"
## [16876] "16876" "16877" "16878" "16879" "16880" "16881" "16882" "16883" "16884"
## [16885] "16885" "16886" "16887" "16888" "16889" "16890" "16891" "16892" "16893"
## [16894] "16894" "16895" "16896" "16897" "16898" "16899" "16900" "16901" "16902"
## [16903] "16903" "16904" "16905" "16906" "16907" "16908" "16909" "16910" "16911"
## [16912] "16912" "16913" "16914" "16915" "16916" "16917" "16918" "16919" "16920"
## [16921] "16921" "16922" "16923" "16924" "16925" "16926" "16927" "16928" "16929"
## [16930] "16930" "16931" "16932" "16933" "16934" "16935" "16936" "16937" "16938"
## [16939] "16939" "16940" "16941" "16942" "16943" "16944" "16945" "16946" "16947"
## [16948] "16948" "16949" "16950" "16951" "16952" "16953" "16954" "16955" "16956"
## [16957] "16957" "16958" "16959" "16960" "16961" "16962" "16963" "16964" "16965"
## [16966] "16966" "16967" "16968" "16969" "16970" "16971" "16972" "16973" "16974"
## [16975] "16975" "16976" "16977" "16978" "16979" "16980" "16981" "16982" "16983"
## [16984] "16984" "16985" "16986" "16987" "16988" "16989" "16990" "16991" "16992"
## [16993] "16993" "16994" "16995" "16996" "16997" "16998" "16999" "17000" "17001"
## [17002] "17002" "17003" "17004" "17005" "17006" "17007" "17008" "17009" "17010"
## [17011] "17011" "17012" "17013" "17014" "17015" "17016" "17017" "17018" "17019"
## [17020] "17020" "17021" "17022" "17023" "17024" "17025" "17026" "17027" "17028"
## [17029] "17029" "17030" "17031" "17032" "17033" "17034" "17035" "17036" "17037"
## [17038] "17038" "17039" "17040" "17041" "17042" "17043" "17044" "17045" "17046"
## [17047] "17047" "17048" "17049" "17050" "17051" "17052" "17053" "17054" "17055"
## [17056] "17056" "17057" "17058" "17059" "17060" "17061" "17062" "17063" "17064"
## [17065] "17065" "17066" "17067" "17068" "17069" "17070" "17071" "17072" "17073"
## [17074] "17074" "17075" "17076" "17077" "17078" "17079" "17080" "17081" "17082"
## [17083] "17083" "17084" "17085" "17086" "17087" "17088" "17089" "17090" "17091"
## [17092] "17092" "17093" "17094" "17095" "17096" "17097" "17098" "17099" "17100"
## [17101] "17101" "17102" "17103" "17104" "17105" "17106" "17107" "17108" "17109"
## [17110] "17110" "17111" "17112" "17113" "17114" "17115" "17116" "17117" "17118"
## [17119] "17119" "17120" "17121" "17122" "17123" "17124" "17125" "17126" "17127"
## [17128] "17128" "17129" "17130" "17131" "17132" "17133" "17134" "17135" "17136"
## [17137] "17137" "17138" "17139" "17140" "17141" "17142" "17143" "17144" "17145"
## [17146] "17146" "17147" "17148" "17149" "17150" "17151" "17152" "17153" "17154"
## [17155] "17155" "17156" "17157" "17158" "17159" "17160" "17161" "17162" "17163"
## [17164] "17164" "17165" "17166" "17167" "17168" "17169" "17170" "17171" "17172"
## [17173] "17173" "17174" "17175" "17176" "17177" "17178" "17179" "17180" "17181"
## [17182] "17182" "17183" "17184" "17185" "17186" "17187" "17188" "17189" "17190"
## [17191] "17191" "17192" "17193" "17194" "17195" "17196" "17197" "17198" "17199"
## [17200] "17200" "17201" "17202" "17203" "17204" "17205" "17206" "17207" "17208"
## [17209] "17209" "17210" "17211" "17212" "17213" "17214" "17215" "17216" "17217"
## [17218] "17218" "17219" "17220" "17221" "17222" "17223" "17224" "17225" "17226"
## [17227] "17227" "17228" "17229" "17230" "17231" "17232" "17233" "17234" "17235"
## [17236] "17236" "17237" "17238" "17239" "17240" "17241" "17242" "17243" "17244"
## [17245] "17245" "17246" "17247" "17248" "17249" "17250" "17251" "17252" "17253"
## [17254] "17254" "17255" "17256" "17257" "17258" "17259" "17260" "17261" "17262"
## [17263] "17263" "17264" "17265" "17266" "17267" "17268" "17269" "17270" "17271"
## [17272] "17272" "17273" "17274" "17275" "17276" "17277" "17278" "17279" "17280"
## [17281] "17281" "17282" "17283" "17284" "17285" "17286" "17287" "17288" "17289"
## [17290] "17290" "17291" "17292" "17293" "17294" "17295" "17296" "17297" "17298"
## [17299] "17299" "17300" "17301" "17302" "17303" "17304" "17305" "17306" "17307"
## [17308] "17308" "17309" "17310" "17311" "17312" "17313" "17314" "17315" "17316"
## [17317] "17317" "17318" "17319" "17320" "17321" "17322" "17323" "17324" "17325"
## [17326] "17326" "17327" "17328" "17329" "17330" "17331" "17332" "17333" "17334"
## [17335] "17335" "17336" "17337" "17338" "17339" "17340" "17341" "17342" "17343"
## [17344] "17344" "17345" "17346" "17347" "17348" "17349" "17350" "17351" "17352"
## [17353] "17353" "17354" "17355" "17356" "17357" "17358" "17359" "17360" "17361"
## [17362] "17362" "17363" "17364" "17365" "17366" "17367" "17368" "17369" "17370"
## [17371] "17371" "17372" "17373" "17374" "17375" "17376" "17377" "17378" "17379"
## [17380] "17380" "17381" "17382" "17383" "17384" "17385" "17386" "17387" "17388"
## [17389] "17389" "17390" "17391" "17392" "17393" "17394" "17395" "17396" "17397"
## [17398] "17398" "17399" "17400" "17401" "17402" "17403" "17404" "17405" "17406"
## [17407] "17407" "17408" "17409" "17410" "17411" "17412" "17413" "17414" "17415"
## [17416] "17416" "17417" "17418" "17419" "17420" "17421" "17422" "17423" "17424"
## [17425] "17425" "17426" "17427" "17428" "17429" "17430" "17431" "17432" "17433"
## [17434] "17434" "17435" "17436" "17437" "17438" "17439" "17440" "17441" "17442"
## [17443] "17443" "17444" "17445" "17446" "17447" "17448" "17449" "17450" "17451"
## [17452] "17452" "17453" "17454" "17455" "17456" "17457" "17458" "17459" "17460"
## [17461] "17461" "17462" "17463" "17464" "17465" "17466" "17467" "17468" "17469"
## [17470] "17470" "17471" "17472" "17473" "17474" "17475" "17476" "17477" "17478"
## [17479] "17479" "17480" "17481" "17482" "17483" "17484" "17485" "17486" "17487"
## [17488] "17488" "17489" "17490" "17491" "17492" "17493" "17494" "17495" "17496"
## [17497] "17497" "17498" "17499" "17500" "17501" "17502" "17503" "17504" "17505"
## [17506] "17506" "17507" "17508" "17509" "17510" "17511" "17512" "17513" "17514"
## [17515] "17515" "17516" "17517" "17518" "17519" "17520" "17521" "17522" "17523"
## [17524] "17524" "17525" "17526" "17527" "17528" "17529" "17530" "17531" "17532"
## [17533] "17533" "17534" "17535" "17536" "17537" "17538" "17539" "17540" "17541"
## [17542] "17542" "17543" "17544" "17545" "17546" "17547" "17548" "17549" "17550"
## [17551] "17551" "17552" "17553" "17554" "17555" "17556" "17557" "17558" "17559"
## [17560] "17560" "17561" "17562" "17563" "17564" "17565" "17566" "17567" "17568"
## [17569] "17569" "17570" "17571" "17572" "17573" "17574" "17575" "17576" "17577"
## [17578] "17578" "17579" "17580" "17581" "17582" "17583" "17584" "17585" "17586"
## [17587] "17587" "17588" "17589" "17590" "17591" "17592" "17593" "17594" "17595"
## [17596] "17596" "17597" "17598" "17599" "17600" "17601" "17602" "17603" "17604"
## [17605] "17605" "17606" "17607" "17608" "17609" "17610" "17611" "17612" "17613"
## [17614] "17614" "17615" "17616" "17617" "17618" "17619" "17620" "17621" "17622"
## [17623] "17623" "17624" "17625" "17626" "17627" "17628" "17629" "17630" "17631"
## [17632] "17632" "17633" "17634" "17635" "17636" "17637" "17638" "17639" "17640"
## [17641] "17641" "17642" "17643" "17644" "17645" "17646" "17647" "17648" "17649"
## [17650] "17650" "17651" "17652" "17653" "17654" "17655" "17656" "17657" "17658"
## [17659] "17659" "17660" "17661" "17662" "17663" "17664" "17665" "17666" "17667"
## [17668] "17668" "17669" "17670" "17671" "17672" "17673" "17674" "17675" "17676"
## [17677] "17677" "17678" "17679" "17680" "17681" "17682" "17683" "17684" "17685"
## [17686] "17686" "17687" "17688" "17689" "17690" "17691" "17692" "17693" "17694"
## [17695] "17695" "17696" "17697" "17698" "17699" "17700" "17701" "17702" "17703"
## [17704] "17704" "17705" "17706" "17707" "17708" "17709" "17710" "17711" "17712"
## [17713] "17713" "17714" "17715" "17716" "17717" "17718" "17719" "17720" "17721"
## [17722] "17722" "17723" "17724" "17725" "17726" "17727" "17728" "17729" "17730"
## [17731] "17731" "17732" "17733" "17734" "17735" "17736" "17737" "17738" "17739"
## [17740] "17740" "17741" "17742" "17743" "17744" "17745" "17746" "17747" "17748"
## [17749] "17749" "17750" "17751" "17752" "17753" "17754" "17755" "17756" "17757"
## [17758] "17758" "17759" "17760" "17761" "17762" "17763" "17764" "17765" "17766"
## [17767] "17767" "17768" "17769" "17770" "17771" "17772" "17773" "17774" "17775"
## [17776] "17776" "17777" "17778" "17779" "17780" "17781" "17782" "17783" "17784"
## [17785] "17785" "17786" "17787" "17788" "17789" "17790" "17791" "17792" "17793"
## [17794] "17794" "17795" "17796" "17797" "17798" "17799" "17800" "17801" "17802"
## [17803] "17803" "17804" "17805" "17806" "17807" "17808" "17809" "17810" "17811"
## [17812] "17812" "17813" "17814" "17815" "17816" "17817" "17818" "17819" "17820"
## [17821] "17821" "17822" "17823" "17824" "17825" "17826" "17827" "17828" "17829"
## [17830] "17830" "17831" "17832" "17833" "17834" "17835" "17836" "17837" "17838"
## [17839] "17839" "17840" "17841" "17842" "17843" "17844" "17845" "17846" "17847"
## [17848] "17848" "17849" "17850" "17851" "17852" "17853" "17854" "17855" "17856"
## [17857] "17857" "17858" "17859" "17860" "17861" "17862" "17863" "17864" "17865"
## [17866] "17866" "17867" "17868" "17869" "17870" "17871" "17872" "17873" "17874"
## [17875] "17875" "17876" "17877" "17878" "17879" "17880" "17881" "17882" "17883"
## [17884] "17884" "17885" "17886" "17887" "17888" "17889" "17890" "17891" "17892"
## [17893] "17893" "17894" "17895" "17896" "17897" "17898" "17899" "17900" "17901"
## [17902] "17902" "17903" "17904" "17905" "17906" "17907" "17908" "17909" "17910"
## [17911] "17911" "17912" "17913" "17914" "17915" "17916" "17917" "17918" "17919"
## [17920] "17920" "17921" "17922" "17923" "17924" "17925" "17926" "17927" "17928"
## [17929] "17929" "17930" "17931" "17932" "17933" "17934" "17935" "17936" "17937"
## [17938] "17938" "17939" "17940" "17941" "17942" "17943" "17944" "17945" "17946"
## [17947] "17947" "17948" "17949" "17950" "17951" "17952" "17953" "17954" "17955"
## [17956] "17956" "17957" "17958" "17959" "17960" "17961" "17962" "17963" "17964"
## [17965] "17965" "17966" "17967" "17968" "17969" "17970" "17971" "17972" "17973"
## [17974] "17974" "17975" "17976" "17977" "17978" "17979" "17980" "17981" "17982"
## [17983] "17983" "17984" "17985" "17986" "17987" "17988" "17989" "17990" "17991"
## [17992] "17992" "17993" "17994" "17995" "17996" "17997" "17998" "17999" "18000"
## [18001] "18001" "18002" "18003" "18004" "18005" "18006" "18007" "18008" "18009"
## [18010] "18010" "18011" "18012" "18013" "18014" "18015" "18016" "18017" "18018"
## [18019] "18019" "18020" "18021" "18022" "18023" "18024" "18025" "18026" "18027"
## [18028] "18028" "18029" "18030" "18031" "18032" "18033" "18034" "18035" "18036"
## [18037] "18037" "18038" "18039" "18040" "18041" "18042" "18043" "18044" "18045"
## [18046] "18046" "18047" "18048" "18049" "18050" "18051" "18052" "18053" "18054"
## [18055] "18055" "18056" "18057" "18058" "18059" "18060" "18061" "18062" "18063"
## [18064] "18064" "18065" "18066" "18067" "18068" "18069" "18070" "18071" "18072"
## [18073] "18073" "18074" "18075" "18076" "18077" "18078" "18079" "18080" "18081"
## [18082] "18082" "18083" "18084" "18085" "18086" "18087" "18088" "18089" "18090"
## [18091] "18091" "18092" "18093" "18094" "18095" "18096" "18097" "18098" "18099"
## [18100] "18100" "18101" "18102" "18103" "18104" "18105" "18106" "18107" "18108"
## [18109] "18109" "18110" "18111" "18112" "18113" "18114" "18115" "18116" "18117"
## [18118] "18118" "18119" "18120" "18121" "18122" "18123" "18124" "18125" "18126"
## [18127] "18127" "18128" "18129" "18130" "18131" "18132" "18133" "18134" "18135"
## [18136] "18136" "18137" "18138" "18139" "18140" "18141" "18142" "18143" "18144"
## [18145] "18145" "18146" "18147" "18148" "18149" "18150" "18151" "18152" "18153"
## [18154] "18154" "18155" "18156" "18157" "18158" "18159" "18160" "18161" "18162"
## [18163] "18163" "18164" "18165" "18166" "18167" "18168" "18169" "18170" "18171"
## [18172] "18172" "18173" "18174" "18175" "18176" "18177" "18178" "18179" "18180"
## [18181] "18181" "18182" "18183" "18184" "18185" "18186" "18187" "18188" "18189"
## [18190] "18190" "18191" "18192" "18193" "18194" "18195" "18196" "18197" "18198"
## [18199] "18199" "18200" "18201" "18202" "18203" "18204" "18205" "18206" "18207"
## [18208] "18208" "18209" "18210" "18211" "18212" "18213" "18214" "18215" "18216"
## [18217] "18217" "18218" "18219" "18220" "18221" "18222" "18223" "18224" "18225"
## [18226] "18226" "18227" "18228" "18229" "18230" "18231" "18232" "18233" "18234"
## [18235] "18235" "18236" "18237" "18238" "18239" "18240" "18241" "18242" "18243"
## [18244] "18244" "18245" "18246" "18247" "18248" "18249" "18250" "18251" "18252"
## [18253] "18253" "18254" "18255" "18256" "18257" "18258" "18259" "18260" "18261"
## [18262] "18262" "18263" "18264" "18265" "18266" "18267" "18268" "18269" "18270"
## [18271] "18271" "18272" "18273" "18274" "18275" "18276" "18277" "18278" "18279"
## [18280] "18280" "18281" "18282" "18283" "18284" "18285" "18286" "18287" "18288"
## [18289] "18289" "18290" "18291" "18292" "18293" "18294" "18295" "18296" "18297"
## [18298] "18298" "18299" "18300" "18301" "18302" "18303" "18304" "18305" "18306"
## [18307] "18307" "18308" "18309" "18310" "18311" "18312" "18313" "18314" "18315"
## [18316] "18316" "18317" "18318" "18319" "18320" "18321" "18322" "18323" "18324"
## [18325] "18325" "18326" "18327" "18328" "18329" "18330" "18331" "18332" "18333"
## [18334] "18334" "18335" "18336" "18337" "18338" "18339" "18340" "18341" "18342"
## [18343] "18343" "18344" "18345" "18346" "18347" "18348" "18349" "18350" "18351"
## [18352] "18352" "18353" "18354" "18355" "18356" "18357" "18358" "18359" "18360"
## [18361] "18361" "18362" "18363" "18364" "18365" "18366" "18367" "18368" "18369"
## [18370] "18370" "18371" "18372" "18373" "18374" "18375" "18376" "18377" "18378"
## [18379] "18379" "18380" "18381" "18382" "18383" "18384" "18385" "18386" "18387"
## [18388] "18388" "18389" "18390" "18391" "18392" "18393" "18394" "18395" "18396"
## [18397] "18397" "18398" "18399" "18400" "18401" "18402" "18403" "18404" "18405"
## [18406] "18406" "18407" "18408" "18409" "18410" "18411" "18412" "18413" "18414"
## [18415] "18415" "18416" "18417" "18418" "18419" "18420" "18421" "18422" "18423"
## [18424] "18424" "18425" "18426" "18427" "18428" "18429" "18430" "18431" "18432"
## [18433] "18433" "18434" "18435" "18436" "18437" "18438" "18439" "18440" "18441"
## [18442] "18442" "18443" "18444" "18445" "18446" "18447" "18448" "18449" "18450"
## [18451] "18451" "18452" "18453" "18454" "18455" "18456" "18457" "18458" "18459"
## [18460] "18460" "18461" "18462" "18463" "18464" "18465" "18466" "18467" "18468"
## [18469] "18469" "18470" "18471" "18472" "18473" "18474" "18475" "18476" "18477"
## [18478] "18478" "18479" "18480" "18481" "18482" "18483" "18484" "18485" "18486"
## [18487] "18487" "18488" "18489" "18490" "18491" "18492" "18493" "18494" "18495"
## [18496] "18496" "18497" "18498" "18499" "18500" "18501" "18502" "18503" "18504"
## [18505] "18505" "18506" "18507" "18508" "18509" "18510" "18511" "18512" "18513"
## [18514] "18514" "18515" "18516" "18517" "18518" "18519" "18520" "18521" "18522"
## [18523] "18523" "18524" "18525" "18526" "18527" "18528" "18529" "18530" "18531"
## [18532] "18532" "18533" "18534" "18535" "18536" "18537" "18538" "18539" "18540"
## [18541] "18541" "18542" "18543" "18544" "18545" "18546" "18547" "18548" "18549"
## [18550] "18550" "18551" "18552" "18553" "18554" "18555" "18556" "18557" "18558"
## [18559] "18559" "18560" "18561" "18562" "18563" "18564" "18565" "18566" "18567"
## [18568] "18568" "18569" "18570" "18571" "18572" "18573" "18574" "18575" "18576"
## [18577] "18577" "18578" "18579" "18580" "18581" "18582" "18583" "18584" "18585"
## [18586] "18586" "18587" "18588" "18589" "18590" "18591" "18592" "18593" "18594"
## [18595] "18595" "18596" "18597" "18598" "18599" "18600" "18601" "18602" "18603"
## [18604] "18604" "18605" "18606" "18607" "18608" "18609" "18610" "18611" "18612"
## [18613] "18613" "18614" "18615" "18616" "18617" "18618" "18619" "18620" "18621"
## [18622] "18622" "18623" "18624" "18625" "18626" "18627" "18628" "18629" "18630"
## [18631] "18631" "18632" "18633" "18634" "18635" "18636" "18637" "18638" "18639"
## [18640] "18640" "18641" "18642" "18643" "18644" "18645" "18646" "18647" "18648"
## [18649] "18649" "18650" "18651" "18652" "18653" "18654" "18655" "18656" "18657"
## [18658] "18658" "18659" "18660" "18661" "18662" "18663" "18664" "18665" "18666"
## [18667] "18667" "18668" "18669" "18670" "18671" "18672" "18673" "18674" "18675"
## [18676] "18676" "18677" "18678" "18679" "18680" "18681" "18682" "18683" "18684"
## [18685] "18685" "18686" "18687" "18688" "18689" "18690" "18691" "18692" "18693"
## [18694] "18694" "18695" "18696" "18697" "18698" "18699" "18700" "18701" "18702"
## [18703] "18703" "18704" "18705" "18706" "18707" "18708" "18709" "18710" "18711"
## [18712] "18712" "18713" "18714" "18715" "18716" "18717" "18718" "18719" "18720"
## [18721] "18721" "18722" "18723" "18724" "18725" "18726" "18727" "18728" "18729"
## [18730] "18730" "18731" "18732" "18733" "18734" "18735" "18736" "18737" "18738"
## [18739] "18739" "18740" "18741" "18742" "18743" "18744" "18745" "18746" "18747"
## [18748] "18748" "18749" "18750" "18751" "18752" "18753" "18754" "18755" "18756"
## [18757] "18757" "18758" "18759" "18760" "18761" "18762" "18763" "18764" "18765"
## [18766] "18766" "18767" "18768" "18769" "18770" "18771" "18772" "18773" "18774"
## [18775] "18775" "18776" "18777" "18778" "18779" "18780" "18781" "18782" "18783"
## [18784] "18784" "18785" "18786" "18787" "18788" "18789" "18790" "18791" "18792"
## [18793] "18793" "18794" "18795" "18796" "18797" "18798" "18799" "18800" "18801"
## [18802] "18802" "18803" "18804" "18805" "18806" "18807" "18808" "18809" "18810"
## [18811] "18811" "18812" "18813" "18814" "18815" "18816" "18817" "18818" "18819"
## [18820] "18820" "18821" "18822" "18823" "18824" "18825" "18826" "18827" "18828"
## [18829] "18829" "18830" "18831" "18832" "18833" "18834" "18835" "18836" "18837"
## [18838] "18838" "18839" "18840" "18841" "18842" "18843" "18844" "18845" "18846"
## [18847] "18847" "18848" "18849" "18850" "18851" "18852" "18853" "18854" "18855"
## [18856] "18856" "18857" "18858" "18859" "18860" "18861" "18862" "18863" "18864"
## [18865] "18865" "18866" "18867" "18868" "18869" "18870" "18871" "18872" "18873"
## [18874] "18874" "18875" "18876" "18877" "18878" "18879" "18880" "18881" "18882"
## [18883] "18883" "18884" "18885" "18886" "18887" "18888" "18889" "18890" "18891"
## [18892] "18892" "18893" "18894" "18895" "18896" "18897" "18898" "18899" "18900"
## [18901] "18901" "18902" "18903" "18904" "18905" "18906" "18907" "18908" "18909"
## [18910] "18910" "18911" "18912" "18913" "18914" "18915" "18916" "18917" "18918"
## [18919] "18919" "18920" "18921" "18922" "18923" "18924" "18925" "18926" "18927"
## [18928] "18928" "18929" "18930" "18931" "18932" "18933" "18934" "18935" "18936"
## [18937] "18937" "18938" "18939" "18940" "18941" "18942" "18943" "18944" "18945"
## [18946] "18946" "18947" "18948" "18949" "18950" "18951" "18952" "18953" "18954"
## [18955] "18955" "18956" "18957" "18958" "18959" "18960" "18961" "18962" "18963"
## [18964] "18964" "18965" "18966" "18967" "18968" "18969" "18970" "18971" "18972"
## [18973] "18973" "18974" "18975" "18976" "18977" "18978" "18979" "18980" "18981"
## [18982] "18982" "18983" "18984" "18985" "18986" "18987" "18988" "18989" "18990"
## [18991] "18991" "18992" "18993" "18994" "18995" "18996" "18997" "18998" "18999"
## [19000] "19000" "19001" "19002" "19003" "19004" "19005" "19006" "19007" "19008"
## [19009] "19009" "19010" "19011" "19012" "19013" "19014" "19015" "19016" "19017"
## [19018] "19018" "19019" "19020" "19021" "19022" "19023" "19024" "19025" "19026"
## [19027] "19027" "19028" "19029" "19030" "19031" "19032" "19033" "19034" "19035"
## [19036] "19036" "19037" "19038" "19039" "19040" "19041" "19042" "19043" "19044"
## [19045] "19045" "19046" "19047" "19048" "19049" "19050" "19051" "19052" "19053"
## [19054] "19054" "19055" "19056" "19057" "19058" "19059" "19060" "19061" "19062"
## [19063] "19063" "19064" "19065" "19066" "19067" "19068" "19069" "19070" "19071"
## [19072] "19072" "19073" "19074" "19075" "19076" "19077" "19078" "19079" "19080"
## [19081] "19081" "19082" "19083" "19084" "19085" "19086" "19087" "19088" "19089"
## [19090] "19090" "19091" "19092" "19093" "19094" "19095" "19096" "19097" "19098"
## [19099] "19099" "19100" "19101" "19102" "19103" "19104" "19105" "19106" "19107"
## [19108] "19108" "19109" "19110" "19111" "19112" "19113" "19114" "19115" "19116"
## [19117] "19117" "19118" "19119" "19120" "19121" "19122" "19123" "19124" "19125"
## [19126] "19126" "19127" "19128" "19129" "19130" "19131" "19132" "19133" "19134"
## [19135] "19135" "19136" "19137" "19138" "19139" "19140" "19141" "19142" "19143"
## [19144] "19144" "19145" "19146" "19147" "19148" "19149" "19150" "19151" "19152"
## [19153] "19153" "19154" "19155" "19156" "19157" "19158" "19159" "19160" "19161"
## [19162] "19162" "19163" "19164" "19165" "19166" "19167" "19168" "19169" "19170"
## [19171] "19171" "19172" "19173" "19174" "19175" "19176" "19177" "19178" "19179"
## [19180] "19180" "19181" "19182" "19183" "19184" "19185" "19186" "19187" "19188"
## [19189] "19189" "19190" "19191" "19192" "19193" "19194" "19195" "19196" "19197"
## [19198] "19198" "19199" "19200" "19201" "19202" "19203" "19204" "19205" "19206"
## [19207] "19207" "19208" "19209" "19210" "19211" "19212" "19213" "19214" "19215"
## [19216] "19216" "19217" "19218" "19219" "19220" "19221" "19222" "19223" "19224"
## [19225] "19225" "19226" "19227" "19228" "19229" "19230" "19231" "19232" "19233"
## [19234] "19234" "19235" "19236" "19237" "19238" "19239" "19240" "19241" "19242"
## [19243] "19243" "19244" "19245" "19246" "19247" "19248" "19249" "19250" "19251"
## [19252] "19252" "19253" "19254" "19255" "19256" "19257" "19258" "19259" "19260"
## [19261] "19261" "19262" "19263" "19264" "19265" "19266" "19267" "19268" "19269"
## [19270] "19270" "19271" "19272" "19273" "19274" "19275" "19276" "19277" "19278"
## [19279] "19279" "19280" "19281" "19282" "19283" "19284" "19285" "19286" "19287"
## [19288] "19288" "19289" "19290" "19291" "19292" "19293" "19294" "19295" "19296"
## [19297] "19297" "19298" "19299" "19300" "19301" "19302" "19303" "19304" "19305"
## [19306] "19306" "19307" "19308" "19309" "19310" "19311" "19312" "19313" "19314"
## [19315] "19315" "19316" "19317" "19318" "19319" "19320" "19321" "19322" "19323"
## [19324] "19324" "19325" "19326" "19327" "19328" "19329" "19330" "19331" "19332"
## [19333] "19333" "19334" "19335" "19336" "19337" "19338" "19339" "19340" "19341"
## [19342] "19342" "19343" "19344" "19345" "19346" "19347" "19348" "19349" "19350"
## [19351] "19351" "19352" "19353" "19354" "19355" "19356" "19357" "19358" "19359"
## [19360] "19360" "19361" "19362" "19363" "19364" "19365" "19366" "19367" "19368"
## [19369] "19369" "19370" "19371" "19372" "19373" "19374" "19375" "19376" "19377"
## [19378] "19378" "19379" "19380" "19381" "19382" "19383" "19384" "19385" "19386"
## [19387] "19387" "19388" "19389" "19390" "19391" "19392" "19393" "19394" "19395"
## [19396] "19396" "19397" "19398" "19399" "19400" "19401" "19402" "19403" "19404"
## [19405] "19405" "19406" "19407" "19408" "19409" "19410" "19411" "19412" "19413"
## [19414] "19414" "19415" "19416" "19417" "19418" "19419" "19420" "19421" "19422"
## [19423] "19423" "19424" "19425" "19426" "19427" "19428" "19429" "19430" "19431"
## [19432] "19432" "19433" "19434" "19435" "19436" "19437" "19438" "19439" "19440"
## [19441] "19441" "19442" "19443" "19444" "19445" "19446" "19447" "19448" "19449"
## [19450] "19450" "19451" "19452" "19453" "19454" "19455" "19456" "19457" "19458"
## [19459] "19459" "19460" "19461" "19462" "19463" "19464" "19465" "19466" "19467"
## [19468] "19468" "19469" "19470" "19471" "19472" "19473" "19474" "19475" "19476"
## [19477] "19477" "19478" "19479" "19480" "19481" "19482" "19483" "19484" "19485"
## [19486] "19486" "19487" "19488" "19489" "19490" "19491" "19492" "19493" "19494"
## [19495] "19495" "19496" "19497" "19498" "19499" "19500" "19501" "19502" "19503"
## [19504] "19504" "19505" "19506" "19507" "19508" "19509" "19510" "19511" "19512"
## [19513] "19513" "19514" "19515" "19516" "19517" "19518" "19519" "19520" "19521"
## [19522] "19522" "19523" "19524" "19525" "19526" "19527" "19528" "19529" "19530"
## [19531] "19531" "19532" "19533" "19534" "19535" "19536" "19537" "19538" "19539"
## [19540] "19540" "19541" "19542" "19543" "19544" "19545" "19546" "19547" "19548"
## [19549] "19549" "19550" "19551" "19552" "19553" "19554" "19555" "19556" "19557"
## [19558] "19558" "19559" "19560" "19561" "19562" "19563" "19564" "19565" "19566"
## [19567] "19567" "19568" "19569" "19570" "19571" "19572" "19573" "19574" "19575"
## [19576] "19576" "19577" "19578" "19579" "19580" "19581" "19582" "19583" "19584"
## [19585] "19585" "19586" "19587" "19588" "19589" "19590" "19591" "19592" "19593"
## [19594] "19594" "19595" "19596" "19597" "19598" "19599" "19600" "19601" "19602"
## [19603] "19603" "19604" "19605" "19606" "19607" "19608" "19609" "19610" "19611"
## [19612] "19612" "19613" "19614" "19615" "19616" "19617" "19618" "19619" "19620"
## [19621] "19621" "19622" "19623" "19624" "19625" "19626" "19627" "19628" "19629"
## [19630] "19630" "19631" "19632" "19633" "19634" "19635" "19636" "19637" "19638"
## [19639] "19639" "19640" "19641" "19642" "19643" "19644" "19645" "19646" "19647"
## [19648] "19648" "19649" "19650" "19651" "19652" "19653" "19654" "19655" "19656"
## [19657] "19657" "19658" "19659" "19660" "19661" "19662" "19663" "19664" "19665"
## [19666] "19666" "19667" "19668" "19669" "19670" "19671" "19672" "19673" "19674"
## [19675] "19675" "19676" "19677" "19678" "19679" "19680" "19681" "19682" "19683"
## [19684] "19684" "19685" "19686" "19687" "19688" "19689" "19690" "19691" "19692"
## [19693] "19693" "19694" "19695" "19696" "19697" "19698" "19699" "19700" "19701"
## [19702] "19702" "19703" "19704" "19705" "19706" "19707" "19708" "19709" "19710"
## [19711] "19711" "19712" "19713" "19714" "19715" "19716" "19717" "19718" "19719"
## [19720] "19720" "19721" "19722" "19723" "19724" "19725" "19726" "19727" "19728"
## [19729] "19729" "19730" "19731" "19732" "19733" "19734" "19735" "19736" "19737"
## [19738] "19738" "19739" "19740" "19741" "19742" "19743" "19744" "19745" "19746"
## [19747] "19747" "19748" "19749" "19750" "19751" "19752" "19753" "19754" "19755"
## [19756] "19756" "19757" "19758" "19759" "19760" "19761" "19762" "19763" "19764"
## [19765] "19765" "19766" "19767" "19768" "19769" "19770" "19771" "19772" "19773"
## [19774] "19774" "19775" "19776" "19777" "19778" "19779" "19780" "19781" "19782"
## [19783] "19783" "19784" "19785" "19786" "19787" "19788" "19789" "19790" "19791"
## [19792] "19792" "19793" "19794" "19795" "19796" "19797" "19798" "19799" "19800"
## [19801] "19801" "19802" "19803" "19804" "19805" "19806" "19807" "19808" "19809"
## [19810] "19810" "19811" "19812" "19813" "19814" "19815" "19816" "19817" "19818"
## [19819] "19819" "19820" "19821" "19822" "19823" "19824" "19825" "19826" "19827"
## [19828] "19828" "19829" "19830" "19831" "19832" "19833" "19834" "19835" "19836"
## [19837] "19837" "19838" "19839" "19840" "19841" "19842" "19843" "19844" "19845"
## [19846] "19846" "19847" "19848" "19849" "19850" "19851" "19852" "19853" "19854"
## [19855] "19855" "19856" "19857" "19858" "19859" "19860" "19861" "19862" "19863"
## [19864] "19864" "19865" "19866" "19867" "19868" "19869" "19870" "19871" "19872"
## [19873] "19873" "19874" "19875" "19876" "19877" "19878" "19879" "19880" "19881"
## [19882] "19882" "19883" "19884" "19885" "19886" "19887" "19888" "19889" "19890"
## [19891] "19891" "19892" "19893" "19894" "19895" "19896" "19897" "19898" "19899"
## [19900] "19900" "19901" "19902" "19903" "19904" "19905" "19906" "19907" "19908"
## [19909] "19909" "19910" "19911" "19912" "19913" "19914" "19915" "19916" "19917"
## [19918] "19918" "19919" "19920" "19921" "19922" "19923" "19924" "19925" "19926"
## [19927] "19927" "19928" "19929" "19930" "19931" "19932" "19933" "19934" "19935"
## [19936] "19936" "19937" "19938" "19939" "19940" "19941" "19942" "19943" "19944"
## [19945] "19945" "19946" "19947" "19948" "19949" "19950" "19951" "19952" "19953"
## [19954] "19954" "19955" "19956" "19957" "19958" "19959" "19960" "19961" "19962"
## [19963] "19963" "19964" "19965" "19966" "19967" "19968" "19969" "19970" "19971"
## [19972] "19972" "19973" "19974" "19975" "19976" "19977" "19978" "19979" "19980"
## [19981] "19981" "19982" "19983" "19984" "19985" "19986" "19987" "19988" "19989"
## [19990] "19990" "19991" "19992" "19993" "19994" "19995" "19996" "19997" "19998"
## [19999] "19999" "20000" "20001" "20002" "20003" "20004" "20005" "20006" "20007"
## [20008] "20008" "20009" "20010" "20011" "20012" "20013" "20014" "20015" "20016"
## [20017] "20017" "20018" "20019" "20020" "20021" "20022" "20023" "20024" "20025"
## [20026] "20026" "20027" "20028" "20029" "20030" "20031" "20032" "20033" "20034"
## [20035] "20035" "20036" "20037" "20038" "20039" "20040" "20041" "20042" "20043"
## [20044] "20044" "20045" "20046" "20047" "20048" "20049" "20050" "20051" "20052"
## [20053] "20053" "20054" "20055" "20056" "20057" "20058" "20059" "20060" "20061"
## [20062] "20062" "20063" "20064" "20065" "20066" "20067" "20068" "20069" "20070"
## [20071] "20071" "20072" "20073" "20074" "20075" "20076" "20077" "20078" "20079"
## [20080] "20080" "20081" "20082" "20083" "20084" "20085" "20086" "20087" "20088"
## [20089] "20089" "20090" "20091" "20092" "20093" "20094" "20095" "20096" "20097"
## [20098] "20098" "20099" "20100" "20101" "20102" "20103" "20104" "20105" "20106"
## [20107] "20107" "20108" "20109" "20110" "20111" "20112" "20113" "20114" "20115"
## [20116] "20116" "20117" "20118" "20119" "20120" "20121" "20122" "20123" "20124"
## [20125] "20125" "20126" "20127" "20128" "20129" "20130" "20131" "20132" "20133"
## [20134] "20134" "20135" "20136" "20137" "20138" "20139" "20140" "20141" "20142"
## [20143] "20143" "20144" "20145" "20146" "20147" "20148" "20149" "20150" "20151"
## [20152] "20152" "20153" "20154" "20155" "20156" "20157" "20158" "20159" "20160"
## [20161] "20161" "20162" "20163" "20164" "20165" "20166" "20167" "20168" "20169"
## [20170] "20170" "20171" "20172" "20173" "20174" "20175" "20176" "20177" "20178"
## [20179] "20179" "20180" "20181" "20182" "20183" "20184" "20185" "20186" "20187"
## [20188] "20188" "20189" "20190" "20191" "20192" "20193" "20194" "20195" "20196"
## [20197] "20197" "20198" "20199" "20200" "20201" "20202" "20203" "20204" "20205"
## [20206] "20206" "20207" "20208" "20209" "20210" "20211" "20212" "20213" "20214"
## [20215] "20215" "20216" "20217" "20218" "20219" "20220" "20221" "20222" "20223"
## [20224] "20224" "20225" "20226" "20227" "20228" "20229" "20230" "20231" "20232"
## [20233] "20233" "20234" "20235" "20236" "20237" "20238" "20239" "20240" "20241"
## [20242] "20242" "20243" "20244" "20245" "20246" "20247" "20248" "20249" "20250"
## [20251] "20251" "20252" "20253" "20254" "20255" "20256" "20257" "20258" "20259"
## [20260] "20260" "20261" "20262" "20263" "20264" "20265" "20266" "20267" "20268"
## [20269] "20269" "20270" "20271" "20272" "20273" "20274" "20275" "20276" "20277"
## [20278] "20278" "20279" "20280" "20281" "20282" "20283" "20284" "20285" "20286"
## [20287] "20287" "20288" "20289" "20290" "20291" "20292" "20293" "20294" "20295"
## [20296] "20296" "20297" "20298" "20299" "20300" "20301" "20302" "20303" "20304"
## [20305] "20305" "20306" "20307" "20308" "20309" "20310" "20311" "20312" "20313"
## [20314] "20314" "20315" "20316" "20317" "20318" "20319" "20320" "20321" "20322"
## [20323] "20323" "20324" "20325" "20326" "20327" "20328" "20329" "20330" "20331"
## [20332] "20332" "20333" "20334" "20335" "20336" "20337" "20338" "20339" "20340"
## [20341] "20341" "20342" "20343" "20344" "20345" "20346" "20347" "20348" "20349"
## [20350] "20350" "20351" "20352" "20353" "20354" "20355" "20356" "20357" "20358"
## [20359] "20359" "20360" "20361" "20362" "20363" "20364" "20365" "20366" "20367"
## [20368] "20368" "20369" "20370" "20371" "20372" "20373" "20374" "20375" "20376"
## [20377] "20377" "20378" "20379" "20380" "20381" "20382" "20383" "20384" "20385"
## [20386] "20386" "20387" "20388" "20389" "20390" "20391" "20392" "20393" "20394"
## [20395] "20395" "20396" "20397" "20398" "20399" "20400" "20401" "20402" "20403"
## [20404] "20404" "20405" "20406" "20407" "20408" "20409" "20410" "20411" "20412"
## [20413] "20413" "20414" "20415" "20416" "20417" "20418" "20419" "20420" "20421"
## [20422] "20422" "20423" "20424" "20425" "20426" "20427" "20428" "20429" "20430"
## [20431] "20431" "20432" "20433" "20434" "20435" "20436" "20437" "20438" "20439"
## [20440] "20440" "20441" "20442" "20443" "20444" "20445" "20446" "20447" "20448"
## [20449] "20449" "20450" "20451" "20452" "20453" "20454" "20455" "20456" "20457"
## [20458] "20458" "20459" "20460" "20461" "20462" "20463" "20464" "20465" "20466"
## [20467] "20467" "20468" "20469" "20470" "20471" "20472" "20473" "20474" "20475"
## [20476] "20476" "20477" "20478" "20479" "20480" "20481" "20482" "20483" "20484"
## [20485] "20485" "20486" "20487" "20488" "20489" "20490" "20491" "20492" "20493"
## [20494] "20494" "20495" "20496" "20497" "20498" "20499" "20500" "20501" "20502"
## [20503] "20503" "20504" "20505" "20506" "20507" "20508" "20509" "20510" "20511"
## [20512] "20512" "20513" "20514" "20515" "20516" "20517" "20518" "20519" "20520"
## [20521] "20521" "20522" "20523" "20524" "20525" "20526" "20527" "20528" "20529"
## [20530] "20530" "20531" "20532" "20533" "20534" "20535" "20536" "20537" "20538"
## [20539] "20539" "20540" "20541" "20542" "20543" "20544" "20545" "20546" "20547"
## [20548] "20548" "20549" "20550" "20551" "20552" "20553" "20554" "20555" "20556"
## [20557] "20557" "20558" "20559" "20560" "20561" "20562" "20563" "20564" "20565"
## [20566] "20566" "20567" "20568" "20569" "20570" "20571" "20572" "20573" "20574"
## [20575] "20575" "20576" "20577" "20578" "20579" "20580" "20581" "20582" "20583"
## [20584] "20584" "20585" "20586" "20587" "20588" "20589" "20590" "20591" "20592"
## [20593] "20593" "20594" "20595" "20596" "20597" "20598" "20599" "20600" "20601"
## [20602] "20602" "20603" "20604" "20605" "20606" "20607" "20608" "20609" "20610"
## [20611] "20611" "20612" "20613" "20614" "20615" "20616" "20617" "20618" "20619"
## [20620] "20620" "20621" "20622" "20623" "20624" "20625" "20626" "20627" "20628"
## [20629] "20629" "20630" "20631" "20632" "20633" "20634" "20635" "20636" "20637"
## [20638] "20638" "20639" "20640" "20641" "20642" "20643" "20644" "20645" "20646"
## [20647] "20647" "20648" "20649" "20650" "20651" "20652" "20653" "20654" "20655"
## [20656] "20656" "20657" "20658" "20659" "20660" "20661" "20662" "20663" "20664"
## [20665] "20665" "20666" "20667" "20668" "20669" "20670" "20671" "20672" "20673"
## [20674] "20674" "20675" "20676" "20677" "20678" "20679" "20680" "20681" "20682"
## [20683] "20683" "20684" "20685" "20686" "20687" "20688" "20689" "20690" "20691"
## [20692] "20692" "20693" "20694" "20695" "20696" "20697" "20698" "20699" "20700"
## [20701] "20701" "20702" "20703" "20704" "20705" "20706" "20707" "20708" "20709"
## [20710] "20710" "20711" "20712" "20713" "20714" "20715" "20716" "20717" "20718"
## [20719] "20719" "20720" "20721" "20722" "20723" "20724" "20725" "20726" "20727"
## [20728] "20728" "20729" "20730" "20731" "20732" "20733" "20734" "20735" "20736"
## [20737] "20737" "20738" "20739" "20740" "20741" "20742" "20743" "20744" "20745"
## [20746] "20746" "20747" "20748" "20749" "20750" "20751" "20752" "20753" "20754"
## [20755] "20755" "20756" "20757" "20758" "20759" "20760" "20761" "20762" "20763"
## [20764] "20764" "20765" "20766" "20767" "20768" "20769" "20770" "20771" "20772"
## [20773] "20773" "20774" "20775" "20776" "20777" "20778" "20779" "20780" "20781"
## [20782] "20782" "20783" "20784" "20785" "20786" "20787" "20788" "20789" "20790"
## [20791] "20791" "20792" "20793" "20794" "20795" "20796" "20797" "20798" "20799"
## [20800] "20800" "20801" "20802" "20803" "20804" "20805" "20806" "20807" "20808"
## [20809] "20809" "20810" "20811" "20812" "20813" "20814" "20815" "20816" "20817"
## [20818] "20818" "20819" "20820" "20821" "20822" "20823" "20824" "20825" "20826"
## [20827] "20827" "20828" "20829" "20830" "20831" "20832" "20833" "20834" "20835"
## [20836] "20836" "20837" "20838" "20839" "20840" "20841" "20842" "20843" "20844"
## [20845] "20845" "20846" "20847" "20848" "20849" "20850" "20851" "20852" "20853"
## [20854] "20854" "20855" "20856" "20857" "20858" "20859" "20860" "20861" "20862"
## [20863] "20863" "20864" "20865" "20866" "20867" "20868" "20869" "20870" "20871"
## [20872] "20872" "20873" "20874" "20875" "20876" "20877" "20878" "20879" "20880"
## [20881] "20881" "20882" "20883" "20884" "20885" "20886" "20887" "20888" "20889"
## [20890] "20890" "20891" "20892" "20893" "20894" "20895" "20896" "20897" "20898"
## [20899] "20899" "20900" "20901" "20902" "20903" "20904" "20905" "20906" "20907"
## [20908] "20908" "20909" "20910" "20911" "20912" "20913" "20914" "20915" "20916"
## [20917] "20917" "20918" "20919" "20920" "20921" "20922" "20923" "20924" "20925"
## [20926] "20926" "20927" "20928" "20929" "20930" "20931" "20932" "20933" "20934"
## [20935] "20935" "20936" "20937" "20938" "20939" "20940" "20941" "20942" "20943"
## [20944] "20944" "20945" "20946" "20947" "20948" "20949" "20950" "20951" "20952"
## [20953] "20953" "20954" "20955" "20956" "20957" "20958" "20959" "20960" "20961"
## [20962] "20962" "20963" "20964" "20965" "20966" "20967" "20968" "20969" "20970"
## [20971] "20971" "20972" "20973" "20974" "20975" "20976" "20977" "20978" "20979"
## [20980] "20980" "20981" "20982" "20983" "20984" "20985" "20986" "20987" "20988"
## [20989] "20989" "20990" "20991" "20992" "20993" "20994" "20995" "20996" "20997"
## [20998] "20998" "20999" "21000" "21001" "21002" "21003" "21004" "21005" "21006"
## [21007] "21007" "21008" "21009" "21010" "21011" "21012" "21013" "21014" "21015"
## [21016] "21016" "21017" "21018" "21019" "21020" "21021" "21022" "21023" "21024"
## [21025] "21025" "21026" "21027" "21028" "21029" "21030" "21031" "21032" "21033"
## [21034] "21034" "21035" "21036" "21037" "21038" "21039" "21040" "21041" "21042"
## [21043] "21043" "21044" "21045" "21046" "21047" "21048" "21049" "21050" "21051"
## [21052] "21052" "21053" "21054" "21055" "21056" "21057" "21058" "21059" "21060"
## [21061] "21061" "21062" "21063" "21064" "21065" "21066" "21067" "21068" "21069"
## [21070] "21070" "21071" "21072" "21073" "21074" "21075" "21076" "21077" "21078"
## [21079] "21079" "21080" "21081" "21082" "21083" "21084" "21085" "21086" "21087"
## [21088] "21088" "21089" "21090" "21091" "21092" "21093" "21094" "21095" "21096"
## [21097] "21097" "21098" "21099" "21100" "21101" "21102" "21103" "21104" "21105"
## [21106] "21106" "21107" "21108" "21109" "21110" "21111" "21112" "21113" "21114"
## [21115] "21115" "21116" "21117" "21118" "21119" "21120" "21121" "21122" "21123"
## [21124] "21124" "21125" "21126" "21127" "21128" "21129" "21130" "21131" "21132"
## [21133] "21133" "21134" "21135" "21136" "21137" "21138" "21139" "21140" "21141"
## [21142] "21142" "21143" "21144" "21145" "21146" "21147" "21148" "21149" "21150"
## [21151] "21151" "21152" "21153" "21154" "21155" "21156" "21157" "21158" "21159"
## [21160] "21160" "21161" "21162" "21163" "21164" "21165" "21166" "21167" "21168"
## [21169] "21169" "21170" "21171" "21172" "21173" "21174" "21175" "21176" "21177"
## [21178] "21178" "21179" "21180" "21181" "21182" "21183" "21184" "21185" "21186"
## [21187] "21187" "21188" "21189" "21190" "21191" "21192" "21193" "21194" "21195"
## [21196] "21196" "21197" "21198" "21199" "21200" "21201" "21202" "21203" "21204"
## [21205] "21205" "21206" "21207" "21208" "21209" "21210" "21211" "21212" "21213"
## [21214] "21214" "21215" "21216" "21217" "21218" "21219" "21220" "21221" "21222"
## [21223] "21223" "21224" "21225" "21226" "21227" "21228" "21229" "21230" "21231"
## [21232] "21232" "21233" "21234" "21235" "21236" "21237" "21238" "21239" "21240"
## [21241] "21241" "21242" "21243" "21244" "21245" "21246" "21247" "21248" "21249"
## [21250] "21250" "21251" "21252" "21253" "21254" "21255" "21256" "21257" "21258"
## [21259] "21259" "21260" "21261" "21262" "21263" "21264" "21265" "21266" "21267"
## [21268] "21268" "21269" "21270" "21271" "21272" "21273" "21274" "21275" "21276"
## [21277] "21277" "21278" "21279" "21280" "21281" "21282" "21283" "21284" "21285"
## [21286] "21286" "21287" "21288" "21289" "21290" "21291" "21292" "21293" "21294"
## [21295] "21295" "21296" "21297" "21298" "21299" "21300" "21301" "21302" "21303"
## [21304] "21304" "21305" "21306" "21307" "21308" "21309" "21310" "21311" "21312"
## [21313] "21313" "21314" "21315" "21316" "21317" "21318" "21319" "21320" "21321"
## [21322] "21322" "21323" "21324" "21325" "21326" "21327" "21328" "21329" "21330"
## [21331] "21331" "21332" "21333" "21334" "21335" "21336" "21337" "21338" "21339"
## [21340] "21340" "21341" "21342" "21343" "21344" "21345" "21346" "21347" "21348"
## [21349] "21349" "21350" "21351" "21352" "21353" "21354" "21355" "21356" "21357"
## [21358] "21358" "21359" "21360" "21361" "21362" "21363" "21364" "21365" "21366"
## [21367] "21367" "21368" "21369" "21370" "21371" "21372" "21373" "21374" "21375"
## [21376] "21376" "21377" "21378" "21379" "21380" "21381" "21382" "21383" "21384"
## [21385] "21385" "21386" "21387" "21388" "21389" "21390" "21391" "21392" "21393"
## [21394] "21394" "21395" "21396" "21397" "21398" "21399" "21400" "21401" "21402"
## [21403] "21403" "21404" "21405" "21406" "21407" "21408" "21409" "21410" "21411"
## [21412] "21412" "21413" "21414" "21415" "21416" "21417" "21418" "21419" "21420"
## [21421] "21421" "21422" "21423" "21424" "21425" "21426" "21427" "21428" "21429"
## [21430] "21430" "21431" "21432" "21433" "21434" "21435" "21436" "21437" "21438"
## [21439] "21439" "21440" "21441" "21442" "21443" "21444" "21445" "21446" "21447"
## [21448] "21448" "21449" "21450" "21451" "21452" "21453" "21454" "21455" "21456"
## [21457] "21457" "21458" "21459" "21460" "21461" "21462" "21463" "21464" "21465"
## [21466] "21466" "21467" "21468" "21469" "21470" "21471" "21472" "21473" "21474"
## [21475] "21475" "21476" "21477" "21478" "21479" "21480" "21481" "21482" "21483"
## [21484] "21484" "21485" "21486" "21487" "21488" "21489" "21490" "21491" "21492"
## [21493] "21493" "21494" "21495" "21496" "21497" "21498" "21499" "21500" "21501"
## [21502] "21502" "21503" "21504" "21505" "21506" "21507" "21508" "21509" "21510"
## [21511] "21511" "21512" "21513" "21514" "21515" "21516" "21517" "21518" "21519"
## [21520] "21520" "21521" "21522" "21523" "21524" "21525" "21526" "21527" "21528"
## [21529] "21529" "21530" "21531" "21532" "21533" "21534" "21535" "21536" "21537"
## [21538] "21538" "21539" "21540" "21541" "21542" "21543" "21544" "21545" "21546"
## [21547] "21547" "21548" "21549" "21550" "21551" "21552" "21553" "21554" "21555"
## [21556] "21556" "21557" "21558" "21559" "21560" "21561" "21562" "21563" "21564"
## [21565] "21565" "21566" "21567" "21568" "21569" "21570" "21571" "21572" "21573"
## [21574] "21574" "21575" "21576" "21577" "21578" "21579" "21580" "21581" "21582"
## [21583] "21583" "21584" "21585" "21586" "21587" "21588" "21589" "21590" "21591"
## [21592] "21592" "21593" "21594" "21595" "21596" "21597" "21598" "21599" "21600"
## [21601] "21601" "21602" "21603" "21604" "21605" "21606" "21607" "21608" "21609"
## [21610] "21610" "21611" "21612" "21613" "21614" "21615" "21616" "21617" "21618"
## [21619] "21619" "21620" "21621" "21622" "21623" "21624" "21625" "21626" "21627"
## [21628] "21628" "21629" "21630" "21631" "21632" "21633" "21634" "21635" "21636"
## [21637] "21637" "21638" "21639" "21640" "21641" "21642" "21643" "21644" "21645"
## [21646] "21646" "21647" "21648" "21649" "21650" "21651" "21652" "21653" "21654"
## [21655] "21655" "21656" "21657" "21658" "21659" "21660" "21661" "21662" "21663"
## [21664] "21664" "21665" "21666" "21667" "21668" "21669" "21670" "21671" "21672"
## [21673] "21673" "21674" "21675" "21676" "21677" "21678" "21679" "21680" "21681"
## [21682] "21682" "21683" "21684" "21685" "21686" "21687" "21688" "21689" "21690"
## [21691] "21691" "21692" "21693" "21694" "21695" "21696" "21697" "21698" "21699"
## [21700] "21700" "21701" "21702" "21703" "21704" "21705" "21706" "21707" "21708"
## [21709] "21709" "21710" "21711" "21712" "21713" "21714" "21715" "21716" "21717"
## [21718] "21718" "21719" "21720" "21721" "21722" "21723" "21724" "21725" "21726"
## [21727] "21727" "21728" "21729" "21730" "21731" "21732" "21733" "21734" "21735"
## [21736] "21736" "21737" "21738" "21739" "21740" "21741" "21742" "21743" "21744"
## [21745] "21745" "21746" "21747" "21748" "21749" "21750" "21751" "21752" "21753"
## [21754] "21754" "21755" "21756" "21757" "21758" "21759" "21760" "21761" "21762"
## [21763] "21763" "21764" "21765" "21766" "21767" "21768" "21769" "21770" "21771"
## [21772] "21772" "21773" "21774" "21775" "21776" "21777" "21778" "21779" "21780"
## [21781] "21781" "21782" "21783" "21784" "21785" "21786" "21787" "21788" "21789"
## [21790] "21790" "21791" "21792" "21793" "21794" "21795" "21796" "21797" "21798"
## [21799] "21799" "21800" "21801" "21802" "21803" "21804" "21805" "21806" "21807"
## [21808] "21808" "21809" "21810" "21811" "21812" "21813" "21814" "21815" "21816"
## [21817] "21817" "21818" "21819" "21820" "21821" "21822" "21823" "21824" "21825"
## [21826] "21826" "21827" "21828" "21829" "21830" "21831" "21832" "21833" "21834"
## [21835] "21835" "21836" "21837" "21838" "21839" "21840" "21841" "21842" "21843"
## [21844] "21844" "21845" "21846" "21847" "21848" "21849" "21850" "21851" "21852"
## [21853] "21853" "21854" "21855" "21856" "21857" "21858" "21859" "21860" "21861"
## [21862] "21862" "21863" "21864" "21865" "21866" "21867" "21868" "21869" "21870"
## [21871] "21871" "21872" "21873" "21874" "21875" "21876" "21877" "21878" "21879"
## [21880] "21880" "21881" "21882" "21883" "21884" "21885" "21886" "21887" "21888"
## [21889] "21889" "21890" "21891" "21892" "21893" "21894" "21895" "21896" "21897"
## [21898] "21898" "21899" "21900" "21901" "21902" "21903" "21904" "21905" "21906"
## [21907] "21907" "21908" "21909" "21910" "21911" "21912" "21913" "21914" "21915"
## [21916] "21916" "21917" "21918" "21919" "21920" "21921" "21922" "21923" "21924"
## [21925] "21925" "21926" "21927" "21928" "21929" "21930" "21931" "21932" "21933"
## [21934] "21934" "21935" "21936" "21937" "21938" "21939" "21940" "21941" "21942"
## [21943] "21943" "21944" "21945" "21946" "21947" "21948" "21949" "21950" "21951"
## [21952] "21952" "21953" "21954" "21955" "21956" "21957" "21958" "21959" "21960"
## [21961] "21961" "21962" "21963" "21964" "21965" "21966" "21967" "21968" "21969"
## [21970] "21970" "21971" "21972" "21973" "21974" "21975" "21976" "21977" "21978"
## [21979] "21979" "21980" "21981" "21982" "21983" "21984" "21985" "21986" "21987"
## [21988] "21988" "21989" "21990" "21991" "21992" "21993" "21994" "21995" "21996"
## [21997] "21997" "21998" "21999" "22000" "22001" "22002" "22003" "22004" "22005"
## [22006] "22006" "22007" "22008" "22009" "22010" "22011" "22012" "22013" "22014"
## [22015] "22015" "22016" "22017" "22018" "22019" "22020" "22021" "22022" "22023"
## [22024] "22024" "22025" "22026" "22027" "22028" "22029" "22030" "22031" "22032"
## [22033] "22033" "22034" "22035" "22036" "22037" "22038" "22039" "22040" "22041"
## [22042] "22042" "22043" "22044" "22045" "22046" "22047" "22048" "22049" "22050"
## [22051] "22051" "22052" "22053" "22054" "22055" "22056" "22057" "22058" "22059"
## [22060] "22060" "22061" "22062" "22063" "22064" "22065" "22066" "22067" "22068"
## [22069] "22069" "22070" "22071" "22072" "22073" "22074" "22075" "22076" "22077"
## [22078] "22078" "22079" "22080" "22081" "22082" "22083" "22084" "22085" "22086"
## [22087] "22087" "22088" "22089" "22090" "22091" "22092" "22093" "22094" "22095"
## [22096] "22096" "22097" "22098" "22099" "22100" "22101" "22102" "22103" "22104"
## [22105] "22105" "22106" "22107" "22108" "22109" "22110" "22111" "22112" "22113"
## [22114] "22114" "22115" "22116" "22117" "22118" "22119" "22120" "22121" "22122"
## [22123] "22123" "22124" "22125" "22126" "22127" "22128" "22129" "22130" "22131"
## [22132] "22132" "22133" "22134" "22135" "22136" "22137" "22138" "22139" "22140"
## [22141] "22141" "22142" "22143" "22144" "22145" "22146" "22147" "22148" "22149"
## [22150] "22150" "22151" "22152" "22153" "22154" "22155" "22156" "22157" "22158"
## [22159] "22159" "22160" "22161" "22162" "22163" "22164" "22165" "22166" "22167"
## [22168] "22168" "22169" "22170" "22171" "22172" "22173" "22174" "22175" "22176"
## [22177] "22177" "22178" "22179" "22180" "22181" "22182" "22183" "22184" "22185"
## [22186] "22186" "22187" "22188" "22189" "22190" "22191" "22192" "22193" "22194"
## [22195] "22195" "22196" "22197" "22198" "22199" "22200" "22201" "22202" "22203"
## [22204] "22204" "22205" "22206" "22207" "22208" "22209" "22210" "22211" "22212"
## [22213] "22213" "22214" "22215" "22216" "22217" "22218" "22219" "22220" "22221"
## [22222] "22222" "22223" "22224" "22225" "22226" "22227" "22228" "22229" "22230"
## [22231] "22231" "22232" "22233" "22234" "22235" "22236" "22237" "22238" "22239"
## [22240] "22240" "22241" "22242" "22243" "22244" "22245" "22246" "22247" "22248"
## [22249] "22249" "22250" "22251" "22252" "22253" "22254" "22255" "22256" "22257"
## [22258] "22258" "22259" "22260" "22261" "22262" "22263" "22264" "22265" "22266"
## [22267] "22267" "22268" "22269" "22270" "22271" "22272" "22273" "22274" "22275"
## [22276] "22276" "22277" "22278" "22279" "22280" "22281" "22282" "22283" "22284"
## [22285] "22285" "22286" "22287" "22288" "22289" "22290" "22291" "22292" "22293"
## [22294] "22294" "22295" "22296" "22297" "22298" "22299" "22300" "22301" "22302"
## [22303] "22303" "22304" "22305" "22306" "22307" "22308" "22309" "22310" "22311"
## [22312] "22312" "22313" "22314" "22315" "22316" "22317" "22318" "22319" "22320"
## [22321] "22321" "22322" "22323" "22324" "22325" "22326" "22327" "22328" "22329"
## [22330] "22330" "22331" "22332" "22333" "22334" "22335" "22336" "22337" "22338"
## [22339] "22339" "22340" "22341" "22342" "22343" "22344" "22345" "22346" "22347"
## [22348] "22348" "22349" "22350" "22351" "22352" "22353" "22354" "22355" "22356"
## [22357] "22357" "22358" "22359" "22360" "22361" "22362" "22363" "22364" "22365"
## [22366] "22366" "22367" "22368" "22369" "22370" "22371" "22372" "22373" "22374"
## [22375] "22375" "22376" "22377" "22378" "22379" "22380" "22381" "22382" "22383"
## [22384] "22384" "22385" "22386" "22387" "22388" "22389" "22390" "22391" "22392"
## [22393] "22393" "22394" "22395" "22396" "22397" "22398" "22399" "22400" "22401"
## [22402] "22402" "22403" "22404" "22405" "22406" "22407" "22408" "22409" "22410"
## [22411] "22411" "22412" "22413" "22414" "22415" "22416" "22417" "22418" "22419"
## [22420] "22420" "22421" "22422" "22423" "22424" "22425" "22426" "22427" "22428"
## [22429] "22429" "22430" "22431" "22432" "22433" "22434" "22435" "22436" "22437"
## [22438] "22438" "22439" "22440" "22441" "22442" "22443" "22444" "22445" "22446"
## [22447] "22447" "22448" "22449" "22450" "22451" "22452" "22453" "22454" "22455"
## [22456] "22456" "22457" "22458" "22459" "22460" "22461" "22462" "22463" "22464"
## [22465] "22465" "22466" "22467" "22468" "22469" "22470" "22471" "22472" "22473"
## [22474] "22474" "22475" "22476" "22477" "22478" "22479" "22480" "22481" "22482"
## [22483] "22483" "22484" "22485" "22486" "22487" "22488" "22489" "22490" "22491"
## [22492] "22492" "22493" "22494" "22495" "22496" "22497" "22498" "22499" "22500"
## [22501] "22501" "22502" "22503" "22504" "22505" "22506" "22507" "22508" "22509"
## [22510] "22510" "22511" "22512" "22513" "22514" "22515" "22516" "22517" "22518"
## [22519] "22519" "22520" "22521" "22522" "22523" "22524" "22525" "22526" "22527"
## [22528] "22528" "22529" "22530" "22531" "22532" "22533" "22534" "22535" "22536"
## [22537] "22537" "22538" "22539" "22540" "22541" "22542" "22543" "22544" "22545"
## [22546] "22546" "22547" "22548" "22549" "22550" "22551" "22552" "22553" "22554"
## [22555] "22555" "22556" "22557" "22558" "22559" "22560" "22561" "22562" "22563"
## [22564] "22564" "22565" "22566" "22567" "22568" "22569" "22570" "22571" "22572"
## [22573] "22573" "22574" "22575" "22576" "22577" "22578" "22579" "22580" "22581"
## [22582] "22582" "22583" "22584" "22585" "22586" "22587" "22588" "22589" "22590"
## [22591] "22591" "22592" "22593" "22594" "22595" "22596" "22597" "22598" "22599"
## [22600] "22600" "22601" "22602" "22603" "22604" "22605" "22606" "22607" "22608"
## [22609] "22609" "22610" "22611" "22612" "22613" "22614" "22615" "22616" "22617"
## [22618] "22618" "22619" "22620" "22621" "22622" "22623" "22624" "22625" "22626"
## [22627] "22627" "22628" "22629" "22630" "22631" "22632" "22633" "22634" "22635"
## [22636] "22636" "22637" "22638" "22639" "22640" "22641" "22642" "22643" "22644"
## [22645] "22645" "22646" "22647" "22648" "22649" "22650" "22651" "22652" "22653"
## [22654] "22654" "22655" "22656" "22657" "22658" "22659" "22660" "22661" "22662"
## [22663] "22663" "22664" "22665" "22666" "22667" "22668" "22669" "22670" "22671"
## [22672] "22672" "22673" "22674" "22675" "22676" "22677" "22678" "22679" "22680"
## [22681] "22681" "22682" "22683" "22684" "22685" "22686" "22687" "22688" "22689"
## [22690] "22690" "22691" "22692" "22693" "22694" "22695" "22696" "22697" "22698"
## [22699] "22699" "22700" "22701" "22702" "22703" "22704" "22705" "22706" "22707"
## [22708] "22708" "22709" "22710" "22711" "22712" "22713" "22714" "22715" "22716"
## [22717] "22717" "22718" "22719" "22720" "22721" "22722" "22723" "22724" "22725"
## [22726] "22726" "22727" "22728" "22729" "22730" "22731" "22732" "22733" "22734"
## [22735] "22735" "22736" "22737" "22738" "22739" "22740" "22741" "22742" "22743"
## [22744] "22744" "22745" "22746" "22747" "22748" "22749" "22750" "22751" "22752"
## [22753] "22753" "22754" "22755" "22756" "22757" "22758" "22759" "22760" "22761"
## [22762] "22762" "22763" "22764" "22765" "22766" "22767" "22768" "22769" "22770"
## [22771] "22771" "22772" "22773" "22774" "22775" "22776" "22777" "22778" "22779"
## [22780] "22780" "22781" "22782" "22783" "22784" "22785" "22786" "22787" "22788"
## [22789] "22789" "22790" "22791" "22792" "22793" "22794" "22795" "22796" "22797"
## [22798] "22798" "22799" "22800" "22801" "22802" "22803" "22804" "22805" "22806"
## [22807] "22807" "22808" "22809" "22810" "22811" "22812" "22813" "22814" "22815"
## [22816] "22816" "22817" "22818" "22819" "22820" "22821" "22822" "22823" "22824"
## [22825] "22825" "22826" "22827" "22828" "22829" "22830" "22831" "22832" "22833"
## [22834] "22834" "22835" "22836" "22837" "22838" "22839" "22840" "22841" "22842"
## [22843] "22843" "22844" "22845" "22846" "22847" "22848" "22849" "22850" "22851"
## [22852] "22852" "22853" "22854" "22855" "22856" "22857" "22858" "22859" "22860"
## [22861] "22861" "22862" "22863" "22864" "22865" "22866" "22867" "22868" "22869"
## [22870] "22870" "22871" "22872" "22873" "22874" "22875" "22876" "22877" "22878"
## [22879] "22879" "22880" "22881" "22882" "22883" "22884" "22885" "22886" "22887"
## [22888] "22888" "22889" "22890" "22891" "22892" "22893" "22894" "22895" "22896"
## [22897] "22897" "22898" "22899" "22900" "22901" "22902" "22903" "22904" "22905"
## [22906] "22906" "22907" "22908" "22909" "22910" "22911" "22912" "22913" "22914"
## [22915] "22915" "22916" "22917" "22918" "22919" "22920" "22921" "22922" "22923"
## [22924] "22924" "22925" "22926" "22927" "22928" "22929" "22930" "22931" "22932"
## [22933] "22933" "22934" "22935" "22936" "22937" "22938" "22939" "22940" "22941"
## [22942] "22942" "22943" "22944" "22945" "22946" "22947" "22948" "22949" "22950"
## [22951] "22951" "22952" "22953" "22954" "22955" "22956" "22957" "22958" "22959"
## [22960] "22960" "22961" "22962" "22963" "22964" "22965" "22966" "22967" "22968"
## [22969] "22969" "22970" "22971" "22972" "22973" "22974" "22975" "22976" "22977"
## [22978] "22978" "22979" "22980" "22981" "22982" "22983" "22984" "22985" "22986"
## [22987] "22987" "22988" "22989" "22990" "22991" "22992" "22993" "22994" "22995"
## [22996] "22996" "22997" "22998" "22999" "23000" "23001" "23002" "23003" "23004"
## [23005] "23005" "23006" "23007" "23008" "23009" "23010" "23011" "23012" "23013"
## [23014] "23014" "23015" "23016" "23017" "23018" "23019" "23020" "23021" "23022"
## [23023] "23023" "23024" "23025" "23026" "23027" "23028" "23029" "23030" "23031"
## [23032] "23032" "23033" "23034" "23035" "23036" "23037" "23038" "23039" "23040"
## [23041] "23041" "23042" "23043" "23044" "23045" "23046" "23047" "23048" "23049"
## [23050] "23050" "23051" "23052" "23053" "23054" "23055" "23056" "23057" "23058"
## [23059] "23059" "23060" "23061" "23062" "23063" "23064" "23065" "23066" "23067"
## [23068] "23068" "23069" "23070" "23071" "23072" "23073" "23074" "23075" "23076"
## [23077] "23077" "23078" "23079" "23080" "23081" "23082" "23083" "23084" "23085"
## [23086] "23086" "23087" "23088" "23089" "23090" "23091" "23092" "23093" "23094"
## [23095] "23095" "23096" "23097" "23098" "23099" "23100" "23101" "23102" "23103"
## [23104] "23104" "23105" "23106" "23107" "23108" "23109" "23110" "23111" "23112"
## [23113] "23113" "23114" "23115" "23116" "23117" "23118" "23119" "23120" "23121"
## [23122] "23122" "23123" "23124" "23125" "23126" "23127" "23128" "23129" "23130"
## [23131] "23131" "23132" "23133" "23134" "23135" "23136" "23137" "23138" "23139"
## [23140] "23140" "23141" "23142" "23143" "23144" "23145" "23146" "23147" "23148"
## [23149] "23149" "23150" "23151" "23152" "23153" "23154" "23155" "23156" "23157"
## [23158] "23158" "23159" "23160" "23161" "23162" "23163" "23164" "23165" "23166"
## [23167] "23167" "23168" "23169" "23170" "23171" "23172" "23173" "23174" "23175"
## [23176] "23176" "23177" "23178" "23179" "23180" "23181" "23182" "23183" "23184"
## [23185] "23185" "23186" "23187" "23188" "23189" "23190" "23191" "23192" "23193"
## [23194] "23194" "23195" "23196" "23197" "23198" "23199" "23200" "23201" "23202"
## [23203] "23203" "23204" "23205" "23206" "23207" "23208" "23209" "23210" "23211"
## [23212] "23212" "23213" "23214" "23215" "23216" "23217" "23218" "23219" "23220"
## [23221] "23221" "23222" "23223" "23224" "23225" "23226" "23227" "23228" "23229"
## [23230] "23230" "23231" "23232" "23233" "23234" "23235" "23236" "23237" "23238"
## [23239] "23239" "23240" "23241" "23242" "23243" "23244" "23245" "23246" "23247"
## [23248] "23248" "23249" "23250" "23251" "23252" "23253" "23254" "23255" "23256"
## [23257] "23257" "23258" "23259" "23260" "23261" "23262" "23263" "23264" "23265"
## [23266] "23266" "23267" "23268" "23269" "23270" "23271" "23272" "23273" "23274"
## [23275] "23275" "23276" "23277" "23278" "23279" "23280" "23281" "23282" "23283"
## [23284] "23284" "23285" "23286" "23287" "23288" "23289" "23290" "23291" "23292"
## [23293] "23293" "23294" "23295" "23296" "23297" "23298" "23299" "23300" "23301"
## [23302] "23302" "23303" "23304" "23305" "23306" "23307" "23308" "23309" "23310"
## [23311] "23311" "23312" "23313" "23314" "23315" "23316" "23317" "23318" "23319"
## [23320] "23320" "23321" "23322" "23323" "23324" "23325" "23326" "23327" "23328"
## [23329] "23329" "23330" "23331" "23332" "23333" "23334" "23335" "23336" "23337"
## [23338] "23338" "23339" "23340" "23341" "23342" "23343" "23344" "23345" "23346"
## [23347] "23347" "23348" "23349" "23350" "23351" "23352" "23353" "23354" "23355"
## [23356] "23356" "23357" "23358" "23359" "23360" "23361" "23362" "23363" "23364"
## [23365] "23365" "23366" "23367" "23368" "23369" "23370" "23371" "23372" "23373"
## [23374] "23374" "23375" "23376" "23377" "23378" "23379" "23380" "23381" "23382"
## [23383] "23383" "23384" "23385" "23386" "23387" "23388" "23389" "23390" "23391"
## [23392] "23392" "23393" "23394" "23395" "23396" "23397" "23398" "23399" "23400"
## [23401] "23401" "23402" "23403" "23404" "23405" "23406" "23407" "23408" "23409"
## [23410] "23410" "23411" "23412" "23413" "23414" "23415" "23416" "23417" "23418"
## [23419] "23419" "23420" "23421" "23422" "23423" "23424" "23425" "23426" "23427"
## [23428] "23428" "23429" "23430" "23431" "23432" "23433" "23434" "23435" "23436"
## [23437] "23437" "23438" "23439" "23440" "23441" "23442" "23443" "23444" "23445"
## [23446] "23446" "23447" "23448" "23449" "23450" "23451" "23452" "23453" "23454"
## [23455] "23455" "23456" "23457" "23458" "23459" "23460" "23461" "23462" "23463"
## [23464] "23464" "23465" "23466" "23467" "23468" "23469" "23470" "23471" "23472"
## [23473] "23473" "23474" "23475" "23476" "23477" "23478" "23479" "23480" "23481"
## [23482] "23482" "23483" "23484" "23485" "23486" "23487" "23488" "23489" "23490"
## [23491] "23491" "23492" "23493" "23494" "23495" "23496" "23497" "23498" "23499"
## [23500] "23500" "23501" "23502" "23503" "23504" "23505" "23506" "23507" "23508"
## [23509] "23509" "23510" "23511" "23512" "23513" "23514" "23515" "23516" "23517"
## [23518] "23518" "23519" "23520" "23521" "23522" "23523" "23524" "23525" "23526"
## [23527] "23527" "23528" "23529" "23530" "23531" "23532" "23533" "23534" "23535"
## [23536] "23536" "23537" "23538" "23539" "23540" "23541" "23542" "23543" "23544"
## [23545] "23545" "23546" "23547" "23548" "23549" "23550" "23551" "23552" "23553"
## [23554] "23554" "23555" "23556" "23557" "23558" "23559" "23560" "23561" "23562"
## [23563] "23563" "23564" "23565" "23566" "23567" "23568" "23569" "23570" "23571"
## [23572] "23572" "23573" "23574" "23575" "23576" "23577" "23578" "23579" "23580"
## [23581] "23581" "23582" "23583" "23584" "23585" "23586" "23587" "23588" "23589"
## [23590] "23590" "23591" "23592" "23593" "23594" "23595" "23596" "23597" "23598"
## [23599] "23599" "23600" "23601" "23602" "23603" "23604" "23605" "23606" "23607"
## [23608] "23608" "23609" "23610" "23611" "23612" "23613" "23614" "23615" "23616"
## [23617] "23617" "23618" "23619" "23620" "23621" "23622" "23623" "23624" "23625"
## [23626] "23626" "23627" "23628" "23629" "23630" "23631" "23632" "23633" "23634"
## [23635] "23635" "23636" "23637" "23638" "23639" "23640" "23641" "23642" "23643"
## [23644] "23644" "23645" "23646" "23647" "23648" "23649" "23650" "23651" "23652"
## [23653] "23653" "23654" "23655" "23656" "23657" "23658" "23659" "23660" "23661"
## [23662] "23662" "23663" "23664" "23665" "23666" "23667" "23668" "23669" "23670"
## [23671] "23671" "23672" "23673" "23674" "23675" "23676" "23677" "23678" "23679"
## [23680] "23680" "23681" "23682" "23683" "23684" "23685" "23686" "23687" "23688"
## [23689] "23689" "23690" "23691" "23692" "23693" "23694" "23695" "23696" "23697"
## [23698] "23698" "23699" "23700" "23701" "23702" "23703" "23704" "23705" "23706"
## [23707] "23707" "23708" "23709" "23710" "23711" "23712" "23713" "23714" "23715"
## [23716] "23716" "23717" "23718" "23719" "23720" "23721" "23722" "23723" "23724"
## [23725] "23725" "23726" "23727" "23728" "23729" "23730" "23731" "23732" "23733"
## [23734] "23734" "23735" "23736" "23737" "23738" "23739" "23740" "23741" "23742"
## [23743] "23743" "23744" "23745" "23746" "23747" "23748" "23749" "23750" "23751"
## [23752] "23752" "23753" "23754" "23755" "23756" "23757" "23758" "23759" "23760"
## [23761] "23761" "23762" "23763" "23764" "23765" "23766" "23767" "23768" "23769"
## [23770] "23770" "23771" "23772" "23773" "23774" "23775" "23776" "23777" "23778"
## [23779] "23779" "23780" "23781" "23782" "23783" "23784" "23785" "23786" "23787"
## [23788] "23788" "23789" "23790" "23791" "23792" "23793" "23794" "23795" "23796"
## [23797] "23797" "23798" "23799" "23800" "23801" "23802" "23803" "23804" "23805"
## [23806] "23806" "23807" "23808" "23809" "23810" "23811" "23812" "23813" "23814"
## [23815] "23815" "23816" "23817" "23818" "23819" "23820" "23821" "23822" "23823"
## [23824] "23824" "23825" "23826" "23827" "23828" "23829" "23830" "23831" "23832"
## [23833] "23833" "23834" "23835" "23836" "23837" "23838" "23839" "23840" "23841"
## [23842] "23842" "23843" "23844" "23845" "23846" "23847" "23848" "23849" "23850"
## [23851] "23851" "23852" "23853" "23854" "23855" "23856" "23857" "23858" "23859"
## [23860] "23860" "23861" "23862" "23863" "23864" "23865" "23866" "23867" "23868"
## [23869] "23869" "23870" "23871" "23872" "23873" "23874" "23875" "23876" "23877"
## [23878] "23878" "23879" "23880" "23881" "23882" "23883" "23884" "23885" "23886"
## [23887] "23887" "23888" "23889" "23890" "23891" "23892" "23893" "23894" "23895"
## [23896] "23896" "23897" "23898" "23899" "23900" "23901" "23902" "23903" "23904"
## [23905] "23905" "23906" "23907" "23908" "23909" "23910" "23911" "23912" "23913"
## [23914] "23914" "23915" "23916" "23917" "23918" "23919" "23920" "23921" "23922"
## [23923] "23923" "23924" "23925" "23926" "23927" "23928" "23929" "23930" "23931"
## [23932] "23932" "23933" "23934" "23935" "23936" "23937" "23938" "23939" "23940"
## [23941] "23941" "23942" "23943" "23944" "23945" "23946" "23947" "23948" "23949"
## [23950] "23950" "23951" "23952" "23953" "23954" "23955" "23956" "23957" "23958"
## [23959] "23959" "23960" "23961" "23962" "23963" "23964" "23965" "23966" "23967"
## [23968] "23968" "23969" "23970" "23971" "23972" "23973" "23974" "23975" "23976"
## [23977] "23977" "23978" "23979" "23980" "23981" "23982" "23983" "23984" "23985"
## [23986] "23986" "23987" "23988" "23989" "23990" "23991" "23992" "23993" "23994"
## [23995] "23995" "23996" "23997" "23998" "23999" "24000" "24001" "24002" "24003"
## [24004] "24004" "24005" "24006" "24007" "24008" "24009" "24010" "24011" "24012"
## [24013] "24013" "24014" "24015" "24016" "24017" "24018" "24019" "24020" "24021"
## [24022] "24022" "24023" "24024" "24025" "24026" "24027" "24028" "24029" "24030"
## [24031] "24031" "24032" "24033" "24034" "24035" "24036" "24037" "24038" "24039"
## [24040] "24040" "24041" "24042" "24043" "24044" "24045" "24046" "24047" "24048"
## [24049] "24049" "24050" "24051" "24052" "24053" "24054" "24055" "24056" "24057"
## [24058] "24058" "24059" "24060" "24061" "24062" "24063" "24064" "24065" "24066"
## [24067] "24067" "24068" "24069" "24070" "24071" "24072" "24073" "24074" "24075"
## [24076] "24076" "24077" "24078" "24079" "24080" "24081" "24082" "24083" "24084"
## [24085] "24085" "24086" "24087" "24088" "24089" "24090" "24091" "24092" "24093"
## [24094] "24094" "24095" "24096" "24097" "24098" "24099" "24100" "24101" "24102"
## [24103] "24103" "24104" "24105" "24106" "24107" "24108" "24109" "24110" "24111"
## [24112] "24112" "24113" "24114" "24115" "24116" "24117" "24118" "24119" "24120"
## [24121] "24121" "24122" "24123" "24124" "24125" "24126" "24127" "24128" "24129"
## [24130] "24130" "24131" "24132" "24133" "24134" "24135" "24136" "24137" "24138"
## [24139] "24139" "24140" "24141" "24142" "24143" "24144" "24145" "24146" "24147"
## [24148] "24148" "24149" "24150" "24151" "24152" "24153" "24154" "24155" "24156"
## [24157] "24157" "24158" "24159" "24160" "24161" "24162" "24163" "24164" "24165"
## [24166] "24166" "24167" "24168" "24169" "24170" "24171" "24172" "24173" "24174"
## [24175] "24175" "24176" "24177" "24178" "24179" "24180" "24181" "24182" "24183"
## [24184] "24184" "24185" "24186" "24187" "24188" "24189" "24190" "24191" "24192"
## [24193] "24193" "24194" "24195" "24196" "24197" "24198" "24199" "24200" "24201"
## [24202] "24202" "24203" "24204" "24205" "24206" "24207" "24208" "24209" "24210"
## [24211] "24211" "24212" "24213" "24214" "24215" "24216" "24217" "24218" "24219"
## [24220] "24220" "24221" "24222" "24223" "24224" "24225" "24226" "24227" "24228"
## [24229] "24229" "24230" "24231" "24232" "24233" "24234" "24235" "24236" "24237"
## [24238] "24238" "24239" "24240" "24241" "24242" "24243" "24244" "24245" "24246"
## [24247] "24247" "24248" "24249" "24250" "24251" "24252" "24253" "24254" "24255"
## [24256] "24256" "24257" "24258" "24259" "24260" "24261" "24262" "24263" "24264"
## [24265] "24265" "24266" "24267" "24268" "24269" "24270" "24271" "24272" "24273"
## [24274] "24274" "24275" "24276" "24277" "24278" "24279" "24280" "24281" "24282"
## [24283] "24283" "24284" "24285" "24286" "24287" "24288" "24289" "24290" "24291"
## [24292] "24292" "24293" "24294" "24295" "24296" "24297" "24298" "24299" "24300"
## [24301] "24301" "24302" "24303" "24304" "24305" "24306" "24307" "24308" "24309"
## [24310] "24310" "24311" "24312" "24313" "24314" "24315" "24316" "24317" "24318"
## [24319] "24319" "24320" "24321" "24322" "24323" "24324" "24325" "24326" "24327"
## [24328] "24328" "24329" "24330" "24331" "24332" "24333" "24334" "24335" "24336"
## [24337] "24337" "24338" "24339" "24340" "24341" "24342" "24343" "24344" "24345"
## [24346] "24346" "24347" "24348" "24349" "24350" "24351" "24352" "24353" "24354"
## [24355] "24355" "24356" "24357" "24358" "24359" "24360" "24361" "24362" "24363"
## [24364] "24364" "24365" "24366" "24367" "24368" "24369" "24370" "24371" "24372"
## [24373] "24373" "24374" "24375" "24376" "24377" "24378" "24379" "24380" "24381"
## [24382] "24382" "24383" "24384" "24385" "24386" "24387" "24388" "24389" "24390"
## [24391] "24391" "24392" "24393" "24394" "24395" "24396" "24397" "24398" "24399"
## [24400] "24400" "24401" "24402" "24403" "24404" "24405" "24406" "24407" "24408"
## [24409] "24409" "24410" "24411" "24412" "24413" "24414" "24415" "24416" "24417"
## [24418] "24418" "24419" "24420" "24421" "24422" "24423" "24424" "24425" "24426"
## [24427] "24427" "24428" "24429" "24430" "24431" "24432" "24433" "24434" "24435"
## [24436] "24436" "24437" "24438" "24439" "24440" "24441" "24442" "24443" "24444"
## [24445] "24445" "24446" "24447" "24448" "24449" "24450" "24451" "24452" "24453"
## [24454] "24454" "24455" "24456" "24457" "24458" "24459" "24460" "24461" "24462"
## [24463] "24463" "24464" "24465" "24466" "24467" "24468" "24469" "24470" "24471"
## [24472] "24472" "24473" "24474" "24475" "24476" "24477" "24478" "24479" "24480"
## [24481] "24481" "24482" "24483" "24484" "24485" "24486" "24487" "24488" "24489"
## [24490] "24490" "24491" "24492" "24493" "24494" "24495" "24496" "24497" "24498"
## [24499] "24499" "24500" "24501" "24502" "24503" "24504" "24505" "24506" "24507"
## [24508] "24508" "24509" "24510" "24511" "24512" "24513" "24514" "24515" "24516"
## [24517] "24517" "24518" "24519" "24520" "24521" "24522" "24523" "24524" "24525"
## [24526] "24526" "24527" "24528" "24529" "24530" "24531" "24532" "24533" "24534"
## [24535] "24535" "24536" "24537" "24538" "24539" "24540" "24541" "24542" "24543"
## [24544] "24544" "24545" "24546" "24547" "24548" "24549" "24550" "24551" "24552"
## [24553] "24553" "24554" "24555" "24556" "24557" "24558" "24559" "24560" "24561"
## [24562] "24562" "24563" "24564" "24565" "24566" "24567" "24568" "24569" "24570"
## [24571] "24571" "24572" "24573" "24574" "24575" "24576" "24577" "24578" "24579"
## [24580] "24580" "24581" "24582" "24583" "24584" "24585" "24586" "24587" "24588"
## [24589] "24589" "24590" "24591" "24592" "24593" "24594" "24595" "24596" "24597"
## [24598] "24598" "24599" "24600" "24601" "24602" "24603" "24604" "24605" "24606"
## [24607] "24607" "24608" "24609" "24610" "24611" "24612" "24613" "24614" "24615"
## [24616] "24616" "24617" "24618" "24619" "24620" "24621" "24622" "24623" "24624"
## [24625] "24625" "24626" "24627" "24628" "24629" "24630" "24631" "24632" "24633"
## [24634] "24634" "24635" "24636" "24637" "24638" "24639" "24640" "24641" "24642"
## [24643] "24643" "24644" "24645" "24646" "24647" "24648" "24649" "24650" "24651"
## [24652] "24652" "24653" "24654" "24655" "24656" "24657" "24658" "24659" "24660"
## [24661] "24661" "24662" "24663" "24664" "24665" "24666" "24667" "24668" "24669"
## [24670] "24670" "24671" "24672" "24673" "24674" "24675" "24676" "24677" "24678"
## [24679] "24679" "24680" "24681" "24682" "24683" "24684" "24685" "24686" "24687"
## [24688] "24688" "24689" "24690" "24691" "24692" "24693" "24694" "24695" "24696"
## [24697] "24697" "24698" "24699" "24700" "24701" "24702" "24703" "24704" "24705"
## [24706] "24706" "24707" "24708" "24709" "24710" "24711" "24712" "24713" "24714"
## [24715] "24715" "24716" "24717" "24718" "24719" "24720" "24721" "24722" "24723"
## [24724] "24724" "24725" "24726" "24727" "24728" "24729" "24730" "24731" "24732"
## [24733] "24733" "24734" "24735" "24736" "24737" "24738" "24739" "24740" "24741"
## [24742] "24742" "24743" "24744" "24745" "24746" "24747" "24748" "24749" "24750"
## [24751] "24751" "24752" "24753" "24754" "24755" "24756" "24757" "24758" "24759"
## [24760] "24760" "24761" "24762" "24763" "24764" "24765" "24766" "24767" "24768"
## [24769] "24769" "24770" "24771" "24772" "24773" "24774" "24775" "24776" "24777"
## [24778] "24778" "24779" "24780" "24781" "24782" "24783" "24784" "24785" "24786"
## [24787] "24787" "24788" "24789" "24790" "24791" "24792" "24793" "24794" "24795"
## [24796] "24796" "24797" "24798" "24799" "24800" "24801" "24802" "24803" "24804"
## [24805] "24805" "24806" "24807" "24808" "24809" "24810" "24811" "24812" "24813"
## [24814] "24814" "24815" "24816" "24817" "24818" "24819" "24820" "24821" "24822"
## [24823] "24823" "24824" "24825" "24826" "24827" "24828" "24829" "24830" "24831"
## [24832] "24832" "24833" "24834" "24835" "24836" "24837" "24838" "24839" "24840"
## [24841] "24841" "24842" "24843" "24844" "24845" "24846" "24847" "24848" "24849"
## [24850] "24850" "24851" "24852" "24853" "24854" "24855" "24856" "24857" "24858"
## [24859] "24859" "24860" "24861" "24862" "24863" "24864" "24865" "24866" "24867"
## [24868] "24868" "24869" "24870" "24871" "24872" "24873" "24874" "24875" "24876"
## [24877] "24877" "24878" "24879" "24880" "24881" "24882" "24883" "24884" "24885"
## [24886] "24886" "24887" "24888" "24889" "24890" "24891" "24892" "24893" "24894"
## [24895] "24895" "24896" "24897" "24898" "24899" "24900" "24901" "24902" "24903"
## [24904] "24904" "24905" "24906" "24907" "24908" "24909" "24910" "24911" "24912"
## [24913] "24913" "24914" "24915" "24916" "24917" "24918" "24919" "24920" "24921"
## [24922] "24922" "24923" "24924" "24925" "24926" "24927" "24928" "24929" "24930"
## [24931] "24931" "24932" "24933" "24934" "24935" "24936" "24937" "24938" "24939"
## [24940] "24940" "24941" "24942" "24943" "24944" "24945" "24946" "24947" "24948"
## [24949] "24949" "24950" "24951" "24952" "24953" "24954" "24955" "24956" "24957"
## [24958] "24958" "24959" "24960" "24961" "24962" "24963" "24964" "24965" "24966"
## [24967] "24967" "24968" "24969" "24970" "24971" "24972" "24973" "24974" "24975"
## [24976] "24976" "24977" "24978" "24979" "24980" "24981" "24982" "24983" "24984"
## [24985] "24985" "24986" "24987" "24988" "24989" "24990" "24991" "24992" "24993"
## [24994] "24994" "24995" "24996" "24997" "24998" "24999" "25000" "25001" "25002"
## [25003] "25003" "25004" "25005" "25006" "25007" "25008" "25009" "25010" "25011"
## [25012] "25012" "25013" "25014" "25015" "25016" "25017" "25018" "25019" "25020"
## [25021] "25021" "25022" "25023" "25024" "25025" "25026" "25027" "25028" "25029"
## [25030] "25030" "25031" "25032" "25033" "25034" "25035" "25036" "25037" "25038"
## [25039] "25039" "25040" "25041" "25042" "25043" "25044" "25045" "25046" "25047"
## [25048] "25048" "25049" "25050" "25051" "25052" "25053" "25054" "25055" "25056"
## [25057] "25057" "25058" "25059" "25060" "25061" "25062" "25063" "25064" "25065"
## [25066] "25066" "25067" "25068" "25069" "25070" "25071" "25072" "25073" "25074"
## [25075] "25075" "25076" "25077" "25078" "25079" "25080" "25081" "25082" "25083"
## [25084] "25084" "25085" "25086" "25087" "25088" "25089" "25090" "25091" "25092"
## [25093] "25093" "25094" "25095" "25096" "25097" "25098" "25099" "25100" "25101"
## [25102] "25102" "25103" "25104" "25105" "25106" "25107" "25108" "25109" "25110"
## [25111] "25111" "25112" "25113" "25114" "25115" "25116" "25117" "25118" "25119"
## [25120] "25120" "25121" "25122" "25123" "25124" "25125" "25126" "25127" "25128"
## [25129] "25129" "25130" "25131" "25132" "25133" "25134" "25135" "25136" "25137"
## [25138] "25138" "25139" "25140" "25141" "25142" "25143" "25144" "25145" "25146"
## [25147] "25147" "25148" "25149" "25150" "25151" "25152" "25153" "25154" "25155"
## [25156] "25156" "25157" "25158" "25159" "25160" "25161" "25162" "25163" "25164"
## [25165] "25165" "25166" "25167" "25168" "25169" "25170" "25171" "25172" "25173"
## [25174] "25174" "25175" "25176" "25177" "25178" "25179" "25180" "25181" "25182"
## [25183] "25183" "25184" "25185" "25186" "25187" "25188" "25189" "25190" "25191"
## [25192] "25192" "25193" "25194" "25195" "25196" "25197" "25198" "25199" "25200"
## [25201] "25201" "25202" "25203" "25204" "25205" "25206" "25207" "25208" "25209"
## [25210] "25210" "25211" "25212" "25213" "25214" "25215" "25216" "25217" "25218"
## [25219] "25219" "25220" "25221" "25222" "25223" "25224" "25225" "25226" "25227"
## [25228] "25228" "25229" "25230" "25231" "25232" "25233" "25234" "25235" "25236"
## [25237] "25237" "25238" "25239" "25240" "25241" "25242" "25243" "25244" "25245"
## [25246] "25246" "25247" "25248" "25249" "25250" "25251" "25252" "25253" "25254"
## [25255] "25255" "25256" "25257" "25258" "25259" "25260" "25261" "25262" "25263"
## [25264] "25264" "25265" "25266" "25267" "25268" "25269" "25270" "25271" "25272"
## [25273] "25273" "25274" "25275" "25276" "25277" "25278" "25279" "25280" "25281"
## [25282] "25282" "25283" "25284" "25285" "25286" "25287" "25288" "25289" "25290"
## [25291] "25291" "25292" "25293" "25294" "25295" "25296" "25297" "25298" "25299"
## [25300] "25300" "25301" "25302" "25303" "25304" "25305" "25306" "25307" "25308"
## [25309] "25309" "25310" "25311" "25312" "25313" "25314" "25315" "25316" "25317"
## [25318] "25318" "25319" "25320" "25321" "25322" "25323" "25324" "25325" "25326"
## [25327] "25327" "25328" "25329" "25330" "25331" "25332" "25333" "25334" "25335"
## [25336] "25336" "25337" "25338" "25339" "25340" "25341" "25342" "25343" "25344"
## [25345] "25345" "25346" "25347" "25348" "25349" "25350" "25351" "25352" "25353"
## [25354] "25354" "25355" "25356" "25357" "25358" "25359" "25360" "25361" "25362"
## [25363] "25363" "25364" "25365" "25366" "25367" "25368" "25369" "25370" "25371"
## [25372] "25372" "25373" "25374" "25375" "25376" "25377" "25378" "25379" "25380"
## [25381] "25381" "25382" "25383" "25384" "25385" "25386" "25387" "25388" "25389"
## [25390] "25390" "25391" "25392" "25393" "25394" "25395" "25396" "25397" "25398"
## [25399] "25399" "25400" "25401" "25402" "25403" "25404" "25405" "25406" "25407"
## [25408] "25408" "25409" "25410" "25411" "25412" "25413" "25414" "25415" "25416"
## [25417] "25417" "25418" "25419" "25420" "25421" "25422" "25423" "25424" "25425"
## [25426] "25426" "25427" "25428" "25429" "25430" "25431" "25432" "25433" "25434"
## [25435] "25435" "25436" "25437" "25438" "25439" "25440" "25441" "25442" "25443"
## [25444] "25444" "25445" "25446" "25447" "25448" "25449" "25450" "25451" "25452"
## [25453] "25453" "25454" "25455" "25456" "25457" "25458" "25459" "25460" "25461"
## [25462] "25462" "25463" "25464" "25465" "25466" "25467" "25468" "25469" "25470"
## [25471] "25471" "25472" "25473" "25474" "25475" "25476" "25477" "25478" "25479"
## [25480] "25480" "25481" "25482" "25483" "25484" "25485" "25486" "25487" "25488"
## [25489] "25489" "25490" "25491" "25492" "25493" "25494" "25495" "25496" "25497"
## [25498] "25498" "25499" "25500" "25501" "25502" "25503" "25504" "25505" "25506"
## [25507] "25507" "25508" "25509" "25510" "25511" "25512" "25513" "25514" "25515"
## [25516] "25516" "25517" "25518" "25519" "25520" "25521" "25522" "25523" "25524"
## [25525] "25525" "25526" "25527" "25528" "25529" "25530" "25531" "25532" "25533"
## [25534] "25534" "25535" "25536" "25537" "25538" "25539" "25540" "25541" "25542"
## [25543] "25543" "25544" "25545" "25546" "25547" "25548" "25549" "25550" "25551"
## [25552] "25552" "25553" "25554" "25555" "25556" "25557" "25558" "25559" "25560"
## [25561] "25561" "25562" "25563" "25564" "25565" "25566" "25567" "25568" "25569"
## [25570] "25570" "25571" "25572" "25573" "25574" "25575" "25576" "25577" "25578"
## [25579] "25579" "25580" "25581" "25582" "25583" "25584" "25585" "25586" "25587"
## [25588] "25588" "25589" "25590" "25591" "25592" "25593" "25594" "25595" "25596"
## [25597] "25597" "25598" "25599" "25600" "25601" "25602" "25603" "25604" "25605"
## [25606] "25606" "25607" "25608" "25609" "25610" "25611" "25612" "25613" "25614"
## [25615] "25615" "25616" "25617" "25618" "25619" "25620" "25621" "25622" "25623"
## [25624] "25624" "25625" "25626" "25627" "25628" "25629" "25630" "25631" "25632"
## [25633] "25633" "25634" "25635" "25636" "25637" "25638" "25639" "25640" "25641"
## [25642] "25642" "25643" "25644" "25645" "25646" "25647" "25648" "25649" "25650"
## [25651] "25651" "25652" "25653" "25654" "25655" "25656" "25657" "25658" "25659"
## [25660] "25660" "25661" "25662" "25663" "25664" "25665" "25666" "25667" "25668"
## [25669] "25669" "25670" "25671" "25672" "25673" "25674" "25675" "25676" "25677"
## [25678] "25678" "25679" "25680" "25681" "25682" "25683" "25684" "25685" "25686"
## [25687] "25687" "25688" "25689" "25690" "25691" "25692" "25693" "25694" "25695"
## [25696] "25696" "25697" "25698" "25699" "25700" "25701" "25702" "25703" "25704"
## [25705] "25705" "25706" "25707" "25708" "25709" "25710" "25711" "25712" "25713"
## [25714] "25714" "25715" "25716" "25717" "25718" "25719" "25720" "25721" "25722"
## [25723] "25723" "25724" "25725" "25726" "25727" "25728" "25729" "25730" "25731"
## [25732] "25732" "25733" "25734" "25735" "25736" "25737" "25738" "25739" "25740"
## [25741] "25741" "25742" "25743" "25744" "25745" "25746" "25747" "25748" "25749"
## [25750] "25750" "25751" "25752" "25753" "25754" "25755" "25756" "25757" "25758"
## [25759] "25759" "25760" "25761" "25762" "25763" "25764" "25765" "25766" "25767"
## [25768] "25768" "25769" "25770" "25771" "25772" "25773" "25774" "25775" "25776"
## [25777] "25777" "25778" "25779" "25780" "25781" "25782" "25783" "25784" "25785"
## [25786] "25786" "25787" "25788" "25789" "25790" "25791" "25792" "25793" "25794"
## [25795] "25795" "25796" "25797" "25798" "25799" "25800" "25801" "25802" "25803"
## [25804] "25804" "25805" "25806" "25807" "25808" "25809" "25810" "25811" "25812"
## [25813] "25813" "25814" "25815" "25816" "25817" "25818" "25819" "25820" "25821"
## [25822] "25822" "25823" "25824" "25825" "25826" "25827" "25828" "25829" "25830"
## [25831] "25831" "25832" "25833" "25834" "25835" "25836" "25837" "25838" "25839"
## [25840] "25840" "25841" "25842" "25843" "25844" "25845" "25846" "25847" "25848"
## [25849] "25849" "25850" "25851" "25852" "25853" "25854" "25855" "25856" "25857"
## [25858] "25858" "25859" "25860" "25861" "25862" "25863" "25864" "25865" "25866"
## [25867] "25867" "25868" "25869" "25870" "25871" "25872" "25873" "25874" "25875"
## [25876] "25876" "25877" "25878" "25879" "25880" "25881" "25882" "25883" "25884"
## [25885] "25885" "25886" "25887" "25888" "25889" "25890" "25891" "25892" "25893"
## [25894] "25894" "25895" "25896" "25897" "25898" "25899" "25900" "25901" "25902"
## [25903] "25903" "25904" "25905" "25906" "25907" "25908" "25909" "25910" "25911"
## [25912] "25912" "25913" "25914" "25915" "25916" "25917" "25918" "25919" "25920"
## [25921] "25921" "25922" "25923" "25924" "25925" "25926" "25927" "25928" "25929"
## [25930] "25930" "25931" "25932" "25933" "25934" "25935" "25936" "25937" "25938"
## [25939] "25939" "25940" "25941" "25942" "25943" "25944" "25945" "25946" "25947"
## [25948] "25948" "25949" "25950" "25951" "25952" "25953" "25954" "25955" "25956"
## [25957] "25957" "25958" "25959" "25960" "25961" "25962" "25963" "25964" "25965"
## [25966] "25966" "25967" "25968" "25969" "25970" "25971" "25972" "25973" "25974"
## [25975] "25975" "25976" "25977" "25978" "25979" "25980" "25981" "25982" "25983"
## [25984] "25984" "25985" "25986" "25987" "25988" "25989" "25990" "25991" "25992"
## [25993] "25993" "25994" "25995" "25996" "25997" "25998" "25999" "26000" "26001"
## [26002] "26002" "26003" "26004" "26005" "26006" "26007" "26008" "26009" "26010"
## [26011] "26011" "26012" "26013" "26014" "26015" "26016" "26017" "26018" "26019"
## [26020] "26020" "26021" "26022" "26023" "26024" "26025" "26026" "26027" "26028"
## [26029] "26029" "26030" "26031" "26032" "26033" "26034" "26035" "26036" "26037"
## [26038] "26038" "26039" "26040" "26041" "26042" "26043" "26044" "26045" "26046"
## [26047] "26047" "26048" "26049" "26050" "26051" "26052" "26053" "26054" "26055"
## [26056] "26056" "26057" "26058" "26059" "26060" "26061" "26062" "26063" "26064"
## [26065] "26065" "26066" "26067" "26068" "26069" "26070" "26071" "26072" "26073"
## [26074] "26074" "26075" "26076" "26077" "26078" "26079" "26080" "26081" "26082"
## [26083] "26083" "26084" "26085" "26086" "26087" "26088" "26089" "26090" "26091"
## [26092] "26092" "26093" "26094" "26095" "26096" "26097" "26098" "26099" "26100"
## [26101] "26101" "26102" "26103" "26104" "26105" "26106" "26107" "26108" "26109"
## [26110] "26110" "26111" "26112" "26113" "26114" "26115" "26116" "26117" "26118"
## [26119] "26119" "26120" "26121" "26122" "26123" "26124" "26125" "26126" "26127"
## [26128] "26128" "26129" "26130" "26131" "26132" "26133" "26134" "26135" "26136"
## [26137] "26137" "26138" "26139" "26140" "26141" "26142" "26143" "26144" "26145"
## [26146] "26146" "26147" "26148" "26149" "26150" "26151" "26152" "26153" "26154"
## [26155] "26155" "26156" "26157" "26158" "26159" "26160" "26161" "26162" "26163"
## [26164] "26164" "26165" "26166" "26167" "26168" "26169" "26170" "26171" "26172"
## [26173] "26173" "26174" "26175" "26176" "26177" "26178" "26179" "26180" "26181"
## [26182] "26182" "26183" "26184" "26185" "26186" "26187" "26188" "26189" "26190"
## [26191] "26191" "26192" "26193" "26194" "26195" "26196" "26197" "26198" "26199"
## [26200] "26200" "26201" "26202" "26203" "26204" "26205" "26206" "26207" "26208"
## [26209] "26209" "26210" "26211" "26212" "26213" "26214" "26215" "26216" "26217"
## [26218] "26218" "26219" "26220" "26221" "26222" "26223" "26224" "26225" "26226"
## [26227] "26227" "26228" "26229" "26230" "26231" "26232" "26233" "26234" "26235"
## [26236] "26236" "26237" "26238" "26239" "26240" "26241" "26242" "26243" "26244"
## [26245] "26245" "26246" "26247" "26248" "26249" "26250" "26251" "26252" "26253"
## [26254] "26254" "26255" "26256" "26257" "26258" "26259" "26260" "26261" "26262"
## [26263] "26263" "26264" "26265" "26266" "26267" "26268" "26269" "26270" "26271"
## [26272] "26272" "26273" "26274" "26275" "26276" "26277" "26278" "26279" "26280"
## [26281] "26281" "26282" "26283" "26284" "26285" "26286" "26287" "26288" "26289"
## [26290] "26290" "26291" "26292" "26293" "26294" "26295" "26296" "26297" "26298"
## [26299] "26299" "26300" "26301" "26302" "26303" "26304" "26305" "26306" "26307"
## [26308] "26308" "26309" "26310" "26311" "26312" "26313" "26314" "26315" "26316"
## [26317] "26317" "26318" "26319" "26320" "26321" "26322" "26323" "26324" "26325"
## [26326] "26326" "26327" "26328" "26329" "26330" "26331" "26332" "26333" "26334"
## [26335] "26335" "26336" "26337" "26338" "26339" "26340" "26341" "26342" "26343"
## [26344] "26344" "26345" "26346" "26347" "26348" "26349" "26350" "26351" "26352"
## [26353] "26353" "26354" "26355" "26356" "26357" "26358" "26359" "26360" "26361"
## [26362] "26362" "26363" "26364" "26365" "26366" "26367" "26368" "26369" "26370"
## [26371] "26371" "26372" "26373" "26374" "26375" "26376" "26377" "26378" "26379"
## [26380] "26380" "26381" "26382" "26383" "26384" "26385" "26386" "26387" "26388"
## [26389] "26389" "26390" "26391" "26392" "26393" "26394" "26395" "26396" "26397"
## [26398] "26398" "26399" "26400" "26401" "26402" "26403" "26404" "26405" "26406"
## [26407] "26407" "26408" "26409" "26410" "26411" "26412" "26413" "26414" "26415"
## [26416] "26416" "26417" "26418" "26419" "26420" "26421" "26422" "26423" "26424"
## [26425] "26425" "26426" "26427" "26428" "26429" "26430" "26431" "26432" "26433"
## [26434] "26434" "26435" "26436" "26437" "26438" "26439" "26440" "26441" "26442"
## [26443] "26443" "26444" "26445" "26446" "26447" "26448" "26449" "26450" "26451"
## [26452] "26452" "26453" "26454" "26455" "26456" "26457" "26458" "26459" "26460"
## [26461] "26461" "26462" "26463" "26464" "26465" "26466" "26467" "26468" "26469"
## [26470] "26470" "26471" "26472" "26473" "26474" "26475" "26476" "26477" "26478"
## [26479] "26479" "26480" "26481" "26482" "26483" "26484" "26485" "26486" "26487"
## [26488] "26488" "26489" "26490" "26491" "26492" "26493" "26494" "26495" "26496"
## [26497] "26497" "26498" "26499" "26500" "26501" "26502" "26503" "26504" "26505"
## [26506] "26506" "26507" "26508" "26509" "26510" "26511" "26512" "26513" "26514"
## [26515] "26515" "26516" "26517" "26518" "26519" "26520" "26521" "26522" "26523"
## [26524] "26524" "26525" "26526" "26527" "26528" "26529" "26530" "26531" "26532"
## [26533] "26533" "26534" "26535" "26536" "26537" "26538" "26539" "26540" "26541"
## [26542] "26542" "26543" "26544" "26545" "26546" "26547" "26548" "26549" "26550"
## [26551] "26551" "26552" "26553" "26554" "26555" "26556" "26557" "26558" "26559"
## [26560] "26560" "26561" "26562" "26563" "26564" "26565" "26566" "26567" "26568"
## [26569] "26569" "26570" "26571" "26572" "26573" "26574" "26575" "26576" "26577"
## [26578] "26578" "26579" "26580" "26581" "26582" "26583" "26584" "26585" "26586"
## [26587] "26587" "26588" "26589" "26590" "26591" "26592" "26593" "26594" "26595"
## [26596] "26596" "26597" "26598" "26599" "26600" "26601" "26602" "26603" "26604"
## [26605] "26605" "26606" "26607" "26608" "26609" "26610" "26611" "26612" "26613"
## [26614] "26614" "26615" "26616" "26617" "26618" "26619" "26620" "26621" "26622"
## [26623] "26623" "26624" "26625" "26626" "26627" "26628" "26629" "26630" "26631"
## [26632] "26632" "26633" "26634" "26635" "26636" "26637" "26638" "26639" "26640"
## [26641] "26641" "26642" "26643" "26644" "26645" "26646" "26647" "26648" "26649"
## [26650] "26650" "26651" "26652" "26653" "26654" "26655" "26656" "26657" "26658"
## [26659] "26659" "26660" "26661" "26662" "26663" "26664" "26665" "26666" "26667"
## [26668] "26668" "26669" "26670" "26671" "26672" "26673" "26674" "26675" "26676"
## [26677] "26677" "26678" "26679" "26680" "26681" "26682" "26683" "26684" "26685"
## [26686] "26686" "26687" "26688" "26689" "26690" "26691" "26692" "26693" "26694"
## [26695] "26695" "26696" "26697" "26698" "26699" "26700" "26701" "26702" "26703"
## [26704] "26704" "26705" "26706" "26707" "26708" "26709" "26710" "26711" "26712"
## [26713] "26713" "26714" "26715" "26716" "26717" "26718" "26719" "26720" "26721"
## [26722] "26722" "26723" "26724" "26725" "26726" "26727" "26728" "26729" "26730"
## [26731] "26731" "26732" "26733" "26734" "26735" "26736" "26737" "26738" "26739"
## [26740] "26740" "26741" "26742" "26743" "26744" "26745" "26746" "26747" "26748"
## [26749] "26749" "26750" "26751" "26752" "26753" "26754" "26755" "26756" "26757"
## [26758] "26758" "26759" "26760" "26761" "26762" "26763" "26764" "26765" "26766"
## [26767] "26767" "26768" "26769" "26770" "26771" "26772" "26773" "26774" "26775"
## [26776] "26776" "26777" "26778" "26779" "26780" "26781" "26782" "26783" "26784"
## [26785] "26785" "26786" "26787" "26788" "26789" "26790" "26791" "26792" "26793"
## [26794] "26794" "26795" "26796" "26797" "26798" "26799" "26800" "26801" "26802"
## [26803] "26803" "26804" "26805" "26806" "26807" "26808" "26809" "26810" "26811"
## [26812] "26812" "26813" "26814" "26815" "26816" "26817" "26818" "26819" "26820"
## [26821] "26821" "26822" "26823" "26824" "26825" "26826" "26827" "26828" "26829"
## [26830] "26830" "26831" "26832" "26833" "26834" "26835" "26836" "26837" "26838"
## [26839] "26839" "26840" "26841" "26842" "26843" "26844" "26845" "26846" "26847"
## [26848] "26848" "26849" "26850" "26851" "26852" "26853" "26854" "26855" "26856"
## [26857] "26857" "26858" "26859" "26860" "26861" "26862" "26863" "26864" "26865"
## [26866] "26866" "26867" "26868" "26869" "26870" "26871" "26872" "26873" "26874"
## [26875] "26875" "26876" "26877" "26878" "26879" "26880" "26881" "26882" "26883"
## [26884] "26884" "26885" "26886" "26887" "26888" "26889" "26890" "26891" "26892"
## [26893] "26893" "26894" "26895" "26896" "26897" "26898" "26899" "26900" "26901"
## [26902] "26902" "26903" "26904" "26905" "26906" "26907" "26908" "26909" "26910"
## [26911] "26911" "26912" "26913" "26914" "26915" "26916" "26917" "26918" "26919"
## [26920] "26920" "26921" "26922" "26923" "26924" "26925" "26926" "26927" "26928"
## [26929] "26929" "26930" "26931" "26932" "26933" "26934" "26935" "26936" "26937"
## [26938] "26938" "26939" "26940" "26941" "26942" "26943" "26944" "26945" "26946"
## [26947] "26947" "26948" "26949" "26950" "26951" "26952" "26953" "26954" "26955"
## [26956] "26956" "26957" "26958" "26959" "26960" "26961" "26962" "26963" "26964"
## [26965] "26965" "26966" "26967" "26968" "26969" "26970" "26971" "26972" "26973"
## [26974] "26974" "26975" "26976" "26977" "26978" "26979" "26980" "26981" "26982"
## [26983] "26983" "26984" "26985" "26986" "26987" "26988" "26989" "26990" "26991"
## [26992] "26992" "26993" "26994" "26995" "26996" "26997" "26998" "26999" "27000"
## [27001] "27001" "27002" "27003" "27004" "27005" "27006" "27007" "27008" "27009"
## [27010] "27010" "27011" "27012" "27013" "27014" "27015" "27016" "27017" "27018"
## [27019] "27019" "27020" "27021" "27022" "27023" "27024" "27025" "27026" "27027"
## [27028] "27028" "27029" "27030" "27031" "27032" "27033" "27034" "27035" "27036"
## [27037] "27037" "27038" "27039" "27040" "27041" "27042" "27043" "27044" "27045"
## [27046] "27046" "27047" "27048" "27049" "27050" "27051" "27052" "27053" "27054"
## [27055] "27055" "27056" "27057" "27058" "27059" "27060" "27061" "27062" "27063"
## [27064] "27064" "27065" "27066" "27067" "27068" "27069" "27070" "27071" "27072"
## [27073] "27073" "27074" "27075" "27076" "27077" "27078" "27079" "27080" "27081"
## [27082] "27082" "27083" "27084" "27085" "27086" "27087" "27088" "27089" "27090"
## [27091] "27091" "27092" "27093" "27094" "27095" "27096" "27097" "27098" "27099"
## [27100] "27100" "27101" "27102" "27103" "27104" "27105" "27106" "27107" "27108"
## [27109] "27109" "27110" "27111" "27112" "27113" "27114" "27115" "27116" "27117"
## [27118] "27118" "27119" "27120" "27121" "27122" "27123" "27124" "27125" "27126"
## [27127] "27127" "27128" "27129" "27130" "27131" "27132" "27133" "27134" "27135"
## [27136] "27136" "27137" "27138" "27139" "27140" "27141" "27142" "27143" "27144"
## [27145] "27145" "27146" "27147" "27148" "27149" "27150" "27151" "27152" "27153"
## [27154] "27154" "27155" "27156" "27157" "27158" "27159" "27160" "27161" "27162"
## [27163] "27163" "27164" "27165" "27166" "27167" "27168" "27169" "27170" "27171"
## [27172] "27172" "27173" "27174" "27175" "27176" "27177" "27178" "27179" "27180"
## [27181] "27181" "27182" "27183" "27184" "27185" "27186" "27187" "27188" "27189"
## [27190] "27190" "27191" "27192" "27193" "27194" "27195" "27196" "27197" "27198"
## [27199] "27199" "27200" "27201" "27202" "27203" "27204" "27205" "27206" "27207"
## [27208] "27208" "27209" "27210" "27211" "27212" "27213" "27214" "27215" "27216"
## [27217] "27217" "27218" "27219" "27220" "27221" "27222" "27223" "27224" "27225"
## [27226] "27226" "27227" "27228" "27229" "27230" "27231" "27232" "27233" "27234"
## [27235] "27235" "27236" "27237" "27238" "27239" "27240" "27241" "27242" "27243"
## [27244] "27244" "27245" "27246" "27247" "27248" "27249" "27250" "27251" "27252"
## [27253] "27253" "27254" "27255" "27256" "27257" "27258" "27259" "27260" "27261"
## [27262] "27262" "27263" "27264" "27265" "27266" "27267" "27268" "27269" "27270"
## [27271] "27271" "27272" "27273" "27274" "27275" "27276" "27277" "27278" "27279"
## [27280] "27280" "27281" "27282" "27283" "27284" "27285" "27286" "27287" "27288"
## [27289] "27289" "27290" "27291" "27292" "27293" "27294" "27295" "27296" "27297"
## [27298] "27298" "27299" "27300" "27301" "27302" "27303" "27304" "27305" "27306"
## [27307] "27307" "27308" "27309" "27310" "27311" "27312" "27313" "27314" "27315"
## [27316] "27316" "27317" "27318" "27319" "27320" "27321" "27322" "27323" "27324"
## [27325] "27325" "27326" "27327" "27328" "27329" "27330" "27331" "27332" "27333"
## [27334] "27334" "27335" "27336" "27337" "27338" "27339" "27340" "27341" "27342"
## [27343] "27343" "27344" "27345" "27346" "27347" "27348" "27349" "27350" "27351"
## [27352] "27352" "27353" "27354" "27355" "27356" "27357" "27358" "27359" "27360"
## [27361] "27361" "27362" "27363" "27364" "27365" "27366" "27367" "27368" "27369"
## [27370] "27370" "27371" "27372" "27373" "27374" "27375" "27376" "27377" "27378"
## [27379] "27379" "27380" "27381" "27382" "27383" "27384" "27385" "27386" "27387"
## [27388] "27388" "27389" "27390" "27391" "27392" "27393" "27394" "27395" "27396"
## [27397] "27397" "27398" "27399" "27400" "27401" "27402" "27403" "27404" "27405"
## [27406] "27406" "27407" "27408" "27409" "27410" "27411" "27412" "27413" "27414"
## [27415] "27415" "27416" "27417" "27418" "27419" "27420" "27421" "27422" "27423"
## [27424] "27424" "27425" "27426" "27427" "27428" "27429" "27430" "27431" "27432"
## [27433] "27433" "27434" "27435" "27436" "27437" "27438" "27439" "27440" "27441"
## [27442] "27442" "27443" "27444" "27445" "27446" "27447" "27448" "27449" "27450"
## [27451] "27451" "27452" "27453" "27454" "27455" "27456" "27457" "27458" "27459"
## [27460] "27460" "27461" "27462" "27463" "27464" "27465" "27466" "27467" "27468"
## [27469] "27469" "27470" "27471" "27472" "27473" "27474" "27475" "27476" "27477"
## [27478] "27478" "27479" "27480" "27481" "27482" "27483" "27484" "27485" "27486"
## [27487] "27487" "27488" "27489" "27490" "27491" "27492" "27493" "27494" "27495"
## [27496] "27496" "27497" "27498" "27499" "27500" "27501" "27502" "27503" "27504"
## [27505] "27505" "27506" "27507" "27508" "27509" "27510" "27511" "27512" "27513"
## [27514] "27514" "27515" "27516" "27517" "27518" "27519" "27520" "27521" "27522"
## [27523] "27523" "27524" "27525" "27526" "27527" "27528" "27529" "27530" "27531"
## [27532] "27532" "27533" "27534" "27535" "27536" "27537" "27538" "27539" "27540"
## [27541] "27541" "27542" "27543" "27544" "27545" "27546" "27547" "27548" "27549"
## [27550] "27550" "27551" "27552" "27553" "27554" "27555" "27556" "27557" "27558"
## [27559] "27559" "27560" "27561" "27562" "27563" "27564" "27565" "27566" "27567"
## [27568] "27568" "27569" "27570" "27571" "27572" "27573" "27574" "27575" "27576"
## [27577] "27577" "27578" "27579" "27580" "27581" "27582" "27583" "27584" "27585"
## [27586] "27586" "27587" "27588" "27589" "27590" "27591" "27592" "27593" "27594"
## [27595] "27595" "27596" "27597" "27598" "27599" "27600" "27601" "27602" "27603"
## [27604] "27604" "27605" "27606" "27607" "27608" "27609" "27610" "27611" "27612"
## [27613] "27613" "27614" "27615" "27616" "27617" "27618" "27619" "27620" "27621"
## [27622] "27622" "27623" "27624" "27625" "27626" "27627" "27628" "27629" "27630"
## [27631] "27631" "27632" "27633" "27634" "27635" "27636" "27637" "27638" "27639"
## [27640] "27640" "27641" "27642" "27643" "27644" "27645" "27646" "27647" "27648"
## [27649] "27649" "27650" "27651" "27652" "27653" "27654" "27655" "27656" "27657"
## [27658] "27658" "27659" "27660" "27661" "27662" "27663" "27664" "27665" "27666"
## [27667] "27667" "27668" "27669" "27670" "27671" "27672" "27673" "27674" "27675"
## [27676] "27676" "27677" "27678" "27679" "27680" "27681" "27682" "27683" "27684"
## [27685] "27685" "27686" "27687" "27688" "27689" "27690" "27691" "27692" "27693"
## [27694] "27694" "27695" "27696" "27697" "27698" "27699" "27700" "27701" "27702"
## [27703] "27703" "27704" "27705" "27706" "27707" "27708" "27709" "27710" "27711"
## [27712] "27712" "27713" "27714" "27715" "27716" "27717" "27718" "27719" "27720"
## [27721] "27721" "27722" "27723" "27724" "27725" "27726" "27727" "27728" "27729"
## [27730] "27730" "27731" "27732" "27733" "27734" "27735" "27736" "27737" "27738"
## [27739] "27739" "27740" "27741" "27742" "27743" "27744" "27745" "27746" "27747"
## [27748] "27748" "27749" "27750" "27751" "27752" "27753" "27754" "27755" "27756"
## [27757] "27757" "27758" "27759" "27760" "27761" "27762" "27763" "27764" "27765"
## [27766] "27766" "27767" "27768" "27769" "27770" "27771" "27772" "27773" "27774"
## [27775] "27775" "27776" "27777" "27778" "27779" "27780" "27781" "27782" "27783"
## [27784] "27784" "27785" "27786" "27787" "27788" "27789" "27790" "27791" "27792"
## [27793] "27793" "27794" "27795" "27796" "27797" "27798" "27799" "27800" "27801"
## [27802] "27802" "27803" "27804" "27805" "27806" "27807" "27808" "27809" "27810"
## [27811] "27811" "27812" "27813" "27814" "27815" "27816" "27817" "27818" "27819"
## [27820] "27820" "27821" "27822" "27823" "27824" "27825" "27826" "27827" "27828"
## [27829] "27829" "27830" "27831" "27832" "27833" "27834" "27835" "27836" "27837"
## [27838] "27838" "27839" "27840" "27841" "27842" "27843" "27844" "27845" "27846"
## [27847] "27847" "27848" "27849" "27850" "27851" "27852" "27853" "27854" "27855"
## [27856] "27856" "27857" "27858" "27859" "27860" "27861" "27862" "27863" "27864"
## [27865] "27865" "27866" "27867" "27868" "27869" "27870" "27871" "27872" "27873"
## [27874] "27874" "27875" "27876" "27877" "27878" "27879" "27880" "27881" "27882"
## [27883] "27883" "27884" "27885" "27886" "27887" "27888" "27889" "27890" "27891"
## [27892] "27892" "27893" "27894" "27895" "27896" "27897" "27898" "27899" "27900"
## [27901] "27901" "27902" "27903" "27904" "27905" "27906" "27907" "27908" "27909"
## [27910] "27910" "27911" "27912" "27913" "27914" "27915" "27916" "27917" "27918"
## [27919] "27919" "27920" "27921" "27922" "27923" "27924" "27925" "27926" "27927"
## [27928] "27928" "27929" "27930" "27931" "27932" "27933" "27934" "27935" "27936"
## [27937] "27937" "27938" "27939" "27940" "27941" "27942" "27943" "27944" "27945"
## [27946] "27946" "27947" "27948" "27949" "27950" "27951" "27952" "27953" "27954"
## [27955] "27955" "27956" "27957" "27958" "27959" "27960" "27961" "27962" "27963"
## [27964] "27964" "27965" "27966" "27967" "27968" "27969" "27970" "27971" "27972"
## [27973] "27973" "27974" "27975" "27976" "27977" "27978" "27979" "27980" "27981"
## [27982] "27982" "27983" "27984" "27985" "27986" "27987" "27988" "27989" "27990"
## [27991] "27991" "27992" "27993" "27994" "27995" "27996" "27997" "27998" "27999"
## [28000] "28000" "28001" "28002" "28003" "28004" "28005" "28006" "28007" "28008"
## [28009] "28009" "28010" "28011" "28012" "28013" "28014" "28015" "28016" "28017"
## [28018] "28018" "28019" "28020" "28021" "28022" "28023" "28024" "28025" "28026"
## [28027] "28027" "28028" "28029" "28030" "28031" "28032" "28033" "28034" "28035"
## [28036] "28036" "28037" "28038" "28039" "28040" "28041" "28042" "28043" "28044"
## [28045] "28045" "28046" "28047" "28048" "28049" "28050" "28051" "28052" "28053"
## [28054] "28054" "28055" "28056" "28057" "28058" "28059" "28060" "28061" "28062"
## [28063] "28063" "28064" "28065" "28066" "28067" "28068" "28069" "28070" "28071"
## [28072] "28072" "28073" "28074" "28075" "28076" "28077" "28078" "28079" "28080"
## [28081] "28081" "28082" "28083" "28084" "28085" "28086" "28087" "28088" "28089"
## [28090] "28090" "28091" "28092" "28093" "28094" "28095" "28096" "28097" "28098"
## [28099] "28099" "28100" "28101" "28102" "28103" "28104" "28105" "28106" "28107"
## [28108] "28108" "28109" "28110" "28111" "28112" "28113" "28114" "28115" "28116"
## [28117] "28117" "28118" "28119" "28120" "28121" "28122" "28123" "28124" "28125"
## [28126] "28126" "28127" "28128" "28129" "28130" "28131" "28132" "28133" "28134"
## [28135] "28135" "28136" "28137" "28138" "28139" "28140" "28141" "28142" "28143"
## [28144] "28144" "28145" "28146" "28147" "28148" "28149" "28150" "28151" "28152"
## [28153] "28153" "28154" "28155" "28156" "28157" "28158" "28159" "28160" "28161"
## [28162] "28162" "28163" "28164" "28165" "28166" "28167" "28168" "28169" "28170"
## [28171] "28171" "28172" "28173" "28174" "28175" "28176" "28177" "28178" "28179"
## [28180] "28180" "28181" "28182" "28183" "28184" "28185" "28186" "28187" "28188"
## [28189] "28189" "28190" "28191" "28192" "28193" "28194" "28195" "28196" "28197"
## [28198] "28198" "28199" "28200" "28201" "28202" "28203" "28204" "28205" "28206"
## [28207] "28207" "28208" "28209" "28210" "28211" "28212" "28213" "28214" "28215"
## [28216] "28216" "28217" "28218" "28219" "28220" "28221" "28222" "28223" "28224"
## [28225] "28225" "28226" "28227" "28228" "28229" "28230" "28231" "28232" "28233"
## [28234] "28234" "28235" "28236" "28237" "28238" "28239" "28240" "28241" "28242"
## [28243] "28243" "28244" "28245" "28246" "28247" "28248" "28249" "28250" "28251"
## [28252] "28252" "28253" "28254" "28255" "28256" "28257" "28258" "28259" "28260"
## [28261] "28261" "28262" "28263" "28264" "28265" "28266" "28267" "28268" "28269"
## [28270] "28270" "28271" "28272" "28273" "28274" "28275" "28276" "28277" "28278"
## [28279] "28279" "28280" "28281" "28282" "28283" "28284" "28285" "28286" "28287"
## [28288] "28288" "28289" "28290" "28291" "28292" "28293" "28294" "28295" "28296"
## [28297] "28297" "28298" "28299" "28300" "28301" "28302" "28303" "28304" "28305"
## [28306] "28306" "28307" "28308" "28309" "28310" "28311" "28312" "28313" "28314"
## [28315] "28315" "28316" "28317" "28318" "28319" "28320" "28321" "28322" "28323"
## [28324] "28324" "28325" "28326" "28327" "28328" "28329" "28330" "28331" "28332"
## [28333] "28333" "28334" "28335" "28336" "28337" "28338" "28339" "28340" "28341"
## [28342] "28342" "28343" "28344" "28345" "28346" "28347" "28348" "28349" "28350"
## [28351] "28351" "28352" "28353" "28354" "28355" "28356" "28357" "28358" "28359"
## [28360] "28360" "28361" "28362" "28363" "28364" "28365" "28366" "28367" "28368"
## [28369] "28369" "28370" "28371" "28372" "28373" "28374" "28375" "28376" "28377"
## [28378] "28378" "28379" "28380" "28381" "28382" "28383" "28384" "28385" "28386"
## [28387] "28387" "28388" "28389" "28390" "28391" "28392" "28393" "28394" "28395"
## [28396] "28396" "28397" "28398" "28399" "28400" "28401" "28402" "28403" "28404"
## [28405] "28405" "28406" "28407" "28408" "28409" "28410" "28411" "28412" "28413"
## [28414] "28414" "28415" "28416" "28417" "28418" "28419" "28420" "28421" "28422"
## [28423] "28423" "28424" "28425" "28426" "28427" "28428" "28429" "28430" "28431"
## [28432] "28432" "28433" "28434" "28435" "28436" "28437" "28438" "28439" "28440"
## [28441] "28441" "28442" "28443" "28444" "28445" "28446" "28447" "28448" "28449"
## [28450] "28450" "28451" "28452" "28453" "28454" "28455" "28456" "28457" "28458"
## [28459] "28459" "28460" "28461" "28462" "28463" "28464" "28465" "28466" "28467"
## [28468] "28468" "28469" "28470" "28471" "28472" "28473" "28474" "28475" "28476"
## [28477] "28477" "28478" "28479" "28480" "28481" "28482" "28483" "28484" "28485"
## [28486] "28486" "28487" "28488" "28489" "28490" "28491" "28492" "28493" "28494"
## [28495] "28495" "28496" "28497" "28498" "28499" "28500" "28501" "28502" "28503"
## [28504] "28504" "28505" "28506" "28507" "28508" "28509" "28510" "28511" "28512"
## [28513] "28513" "28514" "28515" "28516" "28517" "28518" "28519" "28520" "28521"
## [28522] "28522" "28523" "28524" "28525" "28526" "28527" "28528" "28529" "28530"
## [28531] "28531" "28532" "28533" "28534" "28535" "28536" "28537" "28538" "28539"
## [28540] "28540" "28541" "28542" "28543" "28544" "28545" "28546" "28547" "28548"
## [28549] "28549" "28550" "28551" "28552" "28553" "28554" "28555" "28556" "28557"
## [28558] "28558" "28559" "28560" "28561" "28562" "28563" "28564" "28565" "28566"
## [28567] "28567" "28568" "28569" "28570" "28571" "28572" "28573" "28574" "28575"
## [28576] "28576" "28577" "28578" "28579" "28580" "28581" "28582" "28583" "28584"
## [28585] "28585" "28586" "28587" "28588" "28589" "28590" "28591" "28592" "28593"
## [28594] "28594" "28595" "28596" "28597" "28598" "28599" "28600" "28601" "28602"
## [28603] "28603" "28604" "28605" "28606" "28607" "28608" "28609" "28610" "28611"
## [28612] "28612" "28613" "28614" "28615" "28616" "28617" "28618" "28619" "28620"
## [28621] "28621" "28622" "28623" "28624" "28625" "28626" "28627" "28628" "28629"
## [28630] "28630" "28631" "28632" "28633" "28634" "28635" "28636" "28637" "28638"
## [28639] "28639" "28640" "28641" "28642" "28643" "28644" "28645" "28646" "28647"
## [28648] "28648" "28649" "28650" "28651" "28652" "28653" "28654" "28655" "28656"
## [28657] "28657" "28658" "28659" "28660" "28661" "28662" "28663" "28664" "28665"
## [28666] "28666" "28667" "28668" "28669" "28670" "28671" "28672" "28673" "28674"
## [28675] "28675" "28676" "28677" "28678" "28679" "28680" "28681" "28682" "28683"
## [28684] "28684" "28685" "28686" "28687" "28688" "28689" "28690" "28691" "28692"
## [28693] "28693" "28694" "28695" "28696" "28697" "28698" "28699" "28700" "28701"
## [28702] "28702" "28703" "28704" "28705" "28706" "28707" "28708" "28709" "28710"
## [28711] "28711" "28712" "28713" "28714" "28715" "28716" "28717" "28718" "28719"
## [28720] "28720" "28721" "28722" "28723" "28724" "28725" "28726" "28727" "28728"
## [28729] "28729" "28730" "28731" "28732" "28733" "28734" "28735" "28736" "28737"
## [28738] "28738" "28739" "28740" "28741" "28742" "28743" "28744" "28745" "28746"
## [28747] "28747" "28748" "28749" "28750" "28751" "28752" "28753" "28754" "28755"
## [28756] "28756" "28757" "28758" "28759" "28760" "28761" "28762" "28763" "28764"
## [28765] "28765" "28766" "28767" "28768" "28769" "28770" "28771" "28772" "28773"
## [28774] "28774" "28775" "28776" "28777" "28778" "28779" "28780" "28781" "28782"
## [28783] "28783" "28784" "28785" "28786" "28787" "28788" "28789" "28790" "28791"
## [28792] "28792" "28793" "28794" "28795" "28796" "28797" "28798" "28799" "28800"
## [28801] "28801" "28802" "28803" "28804" "28805" "28806" "28807" "28808" "28809"
## [28810] "28810" "28811" "28812" "28813" "28814" "28815" "28816" "28817" "28818"
## [28819] "28819" "28820" "28821" "28822" "28823" "28824" "28825" "28826" "28827"
## [28828] "28828" "28829" "28830" "28831" "28832" "28833" "28834" "28835" "28836"
## [28837] "28837" "28838" "28839" "28840" "28841" "28842" "28843" "28844" "28845"
## [28846] "28846" "28847" "28848" "28849" "28850" "28851" "28852" "28853" "28854"
## [28855] "28855" "28856" "28857" "28858" "28859" "28860" "28861" "28862" "28863"
## [28864] "28864" "28865" "28866" "28867" "28868" "28869" "28870" "28871" "28872"
## [28873] "28873" "28874" "28875" "28876" "28877" "28878" "28879" "28880" "28881"
## [28882] "28882" "28883" "28884" "28885" "28886" "28887" "28888" "28889" "28890"
## [28891] "28891" "28892" "28893" "28894" "28895" "28896" "28897" "28898" "28899"
## [28900] "28900" "28901" "28902" "28903" "28904" "28905" "28906" "28907" "28908"
## [28909] "28909" "28910" "28911" "28912" "28913" "28914" "28915" "28916" "28917"
## [28918] "28918" "28919" "28920" "28921" "28922" "28923" "28924" "28925" "28926"
## [28927] "28927" "28928" "28929" "28930" "28931" "28932" "28933" "28934" "28935"
## [28936] "28936" "28937" "28938" "28939" "28940" "28941" "28942" "28943" "28944"
## [28945] "28945" "28946" "28947" "28948" "28949" "28950" "28951" "28952" "28953"
## [28954] "28954" "28955" "28956" "28957" "28958" "28959" "28960" "28961" "28962"
## [28963] "28963" "28964" "28965" "28966" "28967" "28968" "28969" "28970" "28971"
## [28972] "28972" "28973" "28974" "28975" "28976" "28977" "28978" "28979" "28980"
## [28981] "28981" "28982" "28983" "28984" "28985" "28986" "28987" "28988" "28989"
## [28990] "28990" "28991" "28992" "28993" "28994" "28995" "28996" "28997" "28998"
## [28999] "28999" "29000" "29001" "29002" "29003" "29004" "29005" "29006" "29007"
## [29008] "29008" "29009" "29010" "29011" "29012" "29013" "29014" "29015" "29016"
## [29017] "29017" "29018" "29019" "29020" "29021" "29022" "29023" "29024" "29025"
## [29026] "29026" "29027" "29028" "29029" "29030" "29031" "29032" "29033" "29034"
## [29035] "29035" "29036" "29037" "29038" "29039" "29040" "29041" "29042" "29043"
## [29044] "29044" "29045" "29046" "29047" "29048" "29049" "29050" "29051" "29052"
## [29053] "29053" "29054" "29055" "29056" "29057" "29058" "29059" "29060" "29061"
## [29062] "29062" "29063" "29064" "29065" "29066" "29067" "29068" "29069" "29070"
## [29071] "29071" "29072" "29073" "29074" "29075" "29076" "29077" "29078" "29079"
## [29080] "29080" "29081" "29082" "29083" "29084" "29085" "29086" "29087" "29088"
## [29089] "29089" "29090" "29091" "29092" "29093" "29094" "29095" "29096" "29097"
## [29098] "29098" "29099" "29100" "29101" "29102" "29103" "29104" "29105" "29106"
## [29107] "29107" "29108" "29109" "29110" "29111" "29112" "29113" "29114" "29115"
## [29116] "29116" "29117" "29118" "29119" "29120" "29121" "29122" "29123" "29124"
## [29125] "29125" "29126" "29127" "29128" "29129" "29130" "29131" "29132" "29133"
## [29134] "29134" "29135" "29136" "29137" "29138" "29139" "29140" "29141" "29142"
## [29143] "29143" "29144" "29145" "29146" "29147" "29148" "29149" "29150" "29151"
## [29152] "29152" "29153" "29154" "29155" "29156" "29157" "29158" "29159" "29160"
## [29161] "29161" "29162" "29163" "29164" "29165" "29166" "29167" "29168" "29169"
## [29170] "29170" "29171" "29172" "29173" "29174" "29175" "29176" "29177" "29178"
## [29179] "29179" "29180" "29181" "29182" "29183" "29184" "29185" "29186" "29187"
## [29188] "29188" "29189" "29190" "29191" "29192" "29193" "29194" "29195" "29196"
## [29197] "29197" "29198" "29199" "29200" "29201" "29202" "29203" "29204" "29205"
## [29206] "29206" "29207" "29208" "29209" "29210" "29211" "29212" "29213" "29214"
## [29215] "29215" "29216" "29217" "29218" "29219" "29220" "29221" "29222" "29223"
## [29224] "29224" "29225" "29226" "29227" "29228" "29229" "29230" "29231" "29232"
## [29233] "29233" "29234" "29235" "29236" "29237" "29238" "29239" "29240" "29241"
## [29242] "29242" "29243" "29244" "29245" "29246" "29247" "29248" "29249" "29250"
## [29251] "29251" "29252" "29253" "29254" "29255" "29256" "29257" "29258" "29259"
## [29260] "29260" "29261" "29262" "29263" "29264" "29265" "29266" "29267" "29268"
## [29269] "29269" "29270" "29271" "29272" "29273" "29274" "29275" "29276" "29277"
## [29278] "29278" "29279" "29280" "29281" "29282" "29283" "29284" "29285" "29286"
## [29287] "29287" "29288" "29289" "29290" "29291" "29292" "29293" "29294" "29295"
## [29296] "29296" "29297" "29298" "29299" "29300" "29301" "29302" "29303" "29304"
## [29305] "29305" "29306" "29307" "29308" "29309" "29310" "29311" "29312" "29313"
## [29314] "29314" "29315" "29316" "29317" "29318" "29319" "29320" "29321" "29322"
## [29323] "29323" "29324" "29325" "29326" "29327" "29328" "29329" "29330" "29331"
## [29332] "29332" "29333" "29334" "29335" "29336" "29337" "29338" "29339" "29340"
## [29341] "29341" "29342" "29343" "29344" "29345" "29346" "29347" "29348" "29349"
## [29350] "29350" "29351" "29352" "29353" "29354" "29355" "29356" "29357" "29358"
## [29359] "29359" "29360" "29361" "29362" "29363" "29364" "29365" "29366" "29367"
## [29368] "29368" "29369" "29370" "29371" "29372" "29373" "29374" "29375" "29376"
## [29377] "29377" "29378" "29379" "29380" "29381" "29382" "29383" "29384" "29385"
## [29386] "29386" "29387" "29388" "29389" "29390" "29391" "29392" "29393" "29394"
## [29395] "29395" "29396" "29397" "29398" "29399" "29400" "29401" "29402" "29403"
## [29404] "29404" "29405" "29406" "29407" "29408" "29409" "29410" "29411" "29412"
## [29413] "29413" "29414" "29415" "29416" "29417" "29418" "29419" "29420" "29421"
## [29422] "29422" "29423" "29424" "29425" "29426" "29427" "29428" "29429" "29430"
## [29431] "29431" "29432" "29433" "29434" "29435" "29436" "29437" "29438" "29439"
## [29440] "29440" "29441" "29442" "29443" "29444" "29445" "29446" "29447" "29448"
## [29449] "29449" "29450" "29451" "29452" "29453" "29454" "29455" "29456" "29457"
## [29458] "29458" "29459" "29460" "29461" "29462" "29463" "29464" "29465" "29466"
## [29467] "29467" "29468" "29469" "29470" "29471" "29472" "29473" "29474" "29475"
## [29476] "29476" "29477" "29478" "29479" "29480" "29481" "29482" "29483" "29484"
## [29485] "29485" "29486" "29487" "29488" "29489" "29490" "29491" "29492" "29493"
## [29494] "29494" "29495" "29496" "29497" "29498" "29499" "29500" "29501" "29502"
## [29503] "29503" "29504" "29505" "29506" "29507" "29508" "29509" "29510" "29511"
## [29512] "29512" "29513" "29514" "29515" "29516" "29517" "29518" "29519" "29520"
## [29521] "29521" "29522" "29523" "29524" "29525" "29526" "29527" "29528" "29529"
## [29530] "29530" "29531" "29532" "29533" "29534" "29535" "29536" "29537" "29538"
## [29539] "29539" "29540" "29541" "29542" "29543" "29544" "29545" "29546" "29547"
## [29548] "29548" "29549" "29550" "29551" "29552" "29553" "29554" "29555" "29556"
## [29557] "29557" "29558" "29559" "29560" "29561" "29562" "29563" "29564" "29565"
## [29566] "29566" "29567" "29568" "29569" "29570" "29571" "29572" "29573" "29574"
## [29575] "29575" "29576" "29577" "29578" "29579" "29580" "29581" "29582" "29583"
## [29584] "29584" "29585" "29586" "29587" "29588" "29589" "29590" "29591" "29592"
## [29593] "29593" "29594" "29595" "29596" "29597" "29598" "29599" "29600" "29601"
## [29602] "29602" "29603" "29604" "29605" "29606" "29607" "29608" "29609" "29610"
## [29611] "29611" "29612" "29613" "29614" "29615" "29616" "29617" "29618" "29619"
## [29620] "29620" "29621" "29622" "29623" "29624" "29625" "29626" "29627" "29628"
## [29629] "29629" "29630" "29631" "29632" "29633" "29634" "29635" "29636" "29637"
## [29638] "29638" "29639" "29640" "29641" "29642" "29643" "29644" "29645" "29646"
## [29647] "29647" "29648" "29649" "29650" "29651" "29652" "29653" "29654" "29655"
## [29656] "29656" "29657" "29658" "29659" "29660" "29661" "29662" "29663" "29664"
## [29665] "29665" "29666" "29667" "29668" "29669" "29670" "29671" "29672" "29673"
## [29674] "29674" "29675" "29676" "29677" "29678" "29679" "29680" "29681" "29682"
## [29683] "29683" "29684" "29685" "29686" "29687" "29688" "29689" "29690" "29691"
## [29692] "29692" "29693" "29694" "29695" "29696" "29697" "29698" "29699" "29700"
## [29701] "29701" "29702" "29703" "29704" "29705" "29706" "29707" "29708" "29709"
## [29710] "29710" "29711" "29712" "29713" "29714" "29715" "29716" "29717" "29718"
## [29719] "29719" "29720" "29721" "29722" "29723" "29724" "29725" "29726" "29727"
## [29728] "29728" "29729" "29730" "29731" "29732" "29733" "29734" "29735" "29736"
## [29737] "29737" "29738" "29739" "29740" "29741" "29742" "29743" "29744" "29745"
## [29746] "29746" "29747" "29748" "29749" "29750" "29751" "29752" "29753" "29754"
## [29755] "29755" "29756" "29757" "29758" "29759" "29760" "29761" "29762" "29763"
## [29764] "29764" "29765" "29766" "29767" "29768" "29769" "29770" "29771" "29772"
## [29773] "29773" "29774" "29775" "29776" "29777" "29778" "29779" "29780" "29781"
## [29782] "29782" "29783" "29784" "29785" "29786" "29787" "29788" "29789" "29790"
## [29791] "29791" "29792" "29793" "29794" "29795" "29796" "29797" "29798" "29799"
## [29800] "29800" "29801" "29802" "29803" "29804" "29805" "29806" "29807" "29808"
## [29809] "29809" "29810" "29811" "29812" "29813" "29814" "29815" "29816" "29817"
## [29818] "29818" "29819" "29820" "29821" "29822" "29823" "29824" "29825" "29826"
## [29827] "29827" "29828" "29829" "29830" "29831" "29832" "29833" "29834" "29835"
## [29836] "29836" "29837" "29838" "29839" "29840" "29841" "29842" "29843" "29844"
## [29845] "29845" "29846" "29847" "29848" "29849" "29850" "29851" "29852" "29853"
## [29854] "29854" "29855" "29856" "29857" "29858" "29859" "29860" "29861" "29862"
## [29863] "29863" "29864" "29865" "29866" "29867" "29868" "29869" "29870" "29871"
## [29872] "29872" "29873" "29874" "29875" "29876" "29877" "29878" "29879" "29880"
## [29881] "29881" "29882" "29883" "29884" "29885" "29886" "29887" "29888" "29889"
## [29890] "29890" "29891" "29892" "29893" "29894" "29895" "29896" "29897" "29898"
## [29899] "29899" "29900" "29901" "29902" "29903" "29904" "29905" "29906" "29907"
## [29908] "29908" "29909" "29910" "29911" "29912" "29913" "29914" "29915" "29916"
## [29917] "29917" "29918" "29919" "29920" "29921" "29922" "29923" "29924" "29925"
## [29926] "29926" "29927" "29928" "29929" "29930" "29931" "29932" "29933" "29934"
## [29935] "29935" "29936" "29937" "29938" "29939" "29940" "29941" "29942" "29943"
## [29944] "29944" "29945" "29946" "29947" "29948" "29949" "29950" "29951" "29952"
## [29953] "29953" "29954" "29955" "29956" "29957" "29958" "29959" "29960" "29961"
## [29962] "29962" "29963" "29964" "29965" "29966" "29967" "29968" "29969" "29970"
## [29971] "29971" "29972" "29973" "29974" "29975" "29976" "29977" "29978" "29979"
## [29980] "29980" "29981" "29982" "29983" "29984" "29985" "29986" "29987" "29988"
## [29989] "29989" "29990" "29991" "29992" "29993" "29994" "29995" "29996" "29997"
## [29998] "29998" "29999" "30000" "30001" "30002" "30003" "30004" "30005" "30006"
## [30007] "30007" "30008" "30009" "30010" "30011" "30012" "30013" "30014" "30015"
## [30016] "30016" "30017" "30018" "30019" "30020" "30021" "30022" "30023" "30024"
## [30025] "30025" "30026" "30027" "30028" "30029" "30030" "30031" "30032" "30033"
## [30034] "30034" "30035" "30036" "30037" "30038" "30039" "30040" "30041" "30042"
## [30043] "30043" "30044" "30045" "30046" "30047" "30048" "30049" "30050" "30051"
## [30052] "30052" "30053" "30054" "30055" "30056" "30057" "30058" "30059" "30060"
## [30061] "30061" "30062" "30063" "30064" "30065" "30066" "30067" "30068" "30069"
## [30070] "30070" "30071" "30072" "30073" "30074" "30075" "30076" "30077" "30078"
## [30079] "30079" "30080" "30081" "30082" "30083" "30084" "30085" "30086" "30087"
## [30088] "30088" "30089" "30090" "30091" "30092" "30093" "30094" "30095" "30096"
## [30097] "30097" "30098" "30099" "30100" "30101" "30102" "30103" "30104" "30105"
## [30106] "30106" "30107" "30108" "30109" "30110" "30111" "30112" "30113" "30114"
## [30115] "30115" "30116" "30117" "30118" "30119" "30120" "30121" "30122" "30123"
## [30124] "30124" "30125" "30126" "30127" "30128" "30129" "30130" "30131" "30132"
## [30133] "30133" "30134" "30135" "30136" "30137" "30138" "30139" "30140" "30141"
## [30142] "30142" "30143" "30144" "30145" "30146" "30147" "30148" "30149" "30150"
## [30151] "30151" "30152" "30153" "30154" "30155" "30156" "30157" "30158" "30159"
## [30160] "30160" "30161" "30162" "30163" "30164" "30165" "30166" "30167" "30168"
## [30169] "30169" "30170" "30171" "30172" "30173" "30174" "30175" "30176" "30177"
## [30178] "30178" "30179" "30180" "30181" "30182" "30183" "30184" "30185" "30186"
## [30187] "30187" "30188" "30189" "30190" "30191" "30192" "30193" "30194" "30195"
## [30196] "30196" "30197" "30198" "30199" "30200" "30201" "30202" "30203" "30204"
## [30205] "30205" "30206" "30207" "30208" "30209" "30210" "30211" "30212" "30213"
## [30214] "30214" "30215" "30216" "30217" "30218" "30219" "30220" "30221" "30222"
## [30223] "30223" "30224" "30225" "30226" "30227" "30228" "30229" "30230" "30231"
## [30232] "30232" "30233" "30234" "30235" "30236" "30237" "30238" "30239" "30240"
## [30241] "30241" "30242" "30243" "30244" "30245" "30246" "30247" "30248" "30249"
## [30250] "30250" "30251" "30252" "30253" "30254" "30255" "30256" "30257" "30258"
## [30259] "30259" "30260" "30261" "30262" "30263" "30264" "30265" "30266" "30267"
## [30268] "30268" "30269" "30270" "30271" "30272" "30273" "30274" "30275" "30276"
## [30277] "30277" "30278" "30279" "30280" "30281" "30282" "30283" "30284" "30285"
## [30286] "30286" "30287" "30288" "30289" "30290" "30291" "30292" "30293" "30294"
## [30295] "30295" "30296" "30297" "30298" "30299" "30300" "30301" "30302" "30303"
## [30304] "30304" "30305" "30306" "30307" "30308" "30309" "30310" "30311" "30312"
## [30313] "30313" "30314" "30315" "30316" "30317" "30318" "30319" "30320" "30321"
## [30322] "30322" "30323" "30324" "30325" "30326" "30327" "30328" "30329" "30330"
## [30331] "30331" "30332" "30333" "30334" "30335" "30336" "30337" "30338" "30339"
## [30340] "30340" "30341" "30342" "30343" "30344" "30345" "30346" "30347" "30348"
## [30349] "30349" "30350" "30351" "30352" "30353" "30354" "30355" "30356" "30357"
## [30358] "30358" "30359" "30360" "30361" "30362" "30363" "30364" "30365" "30366"
## [30367] "30367" "30368" "30369" "30370" "30371" "30372" "30373" "30374" "30375"
## [30376] "30376" "30377" "30378" "30379" "30380" "30381" "30382" "30383" "30384"
## [30385] "30385" "30386" "30387" "30388" "30389" "30390" "30391" "30392" "30393"
## [30394] "30394" "30395" "30396" "30397" "30398" "30399" "30400" "30401" "30402"
## [30403] "30403" "30404" "30405" "30406" "30407" "30408" "30409" "30410" "30411"
## [30412] "30412" "30413" "30414" "30415" "30416" "30417" "30418" "30419" "30420"
## [30421] "30421" "30422" "30423" "30424" "30425" "30426" "30427" "30428" "30429"
## [30430] "30430" "30431" "30432" "30433" "30434" "30435" "30436" "30437" "30438"
## [30439] "30439" "30440" "30441" "30442" "30443" "30444" "30445" "30446" "30447"
## [30448] "30448" "30449" "30450" "30451" "30452" "30453" "30454" "30455" "30456"
## [30457] "30457" "30458" "30459" "30460" "30461" "30462" "30463" "30464" "30465"
## [30466] "30466" "30467" "30468" "30469" "30470" "30471" "30472" "30473" "30474"
## [30475] "30475" "30476" "30477" "30478" "30479" "30480" "30481" "30482" "30483"
## [30484] "30484" "30485" "30486" "30487" "30488" "30489" "30490" "30491" "30492"
## [30493] "30493" "30494" "30495" "30496" "30497" "30498" "30499" "30500" "30501"
## [30502] "30502" "30503" "30504" "30505" "30506" "30507" "30508" "30509" "30510"
## [30511] "30511" "30512" "30513" "30514" "30515" "30516" "30517" "30518" "30519"
## [30520] "30520" "30521" "30522" "30523" "30524" "30525" "30526" "30527" "30528"
## [30529] "30529" "30530" "30531" "30532" "30533" "30534" "30535" "30536" "30537"
## [30538] "30538" "30539" "30540" "30541" "30542" "30543" "30544" "30545" "30546"
## [30547] "30547" "30548" "30549" "30550" "30551" "30552" "30553" "30554" "30555"
## [30556] "30556" "30557" "30558" "30559" "30560" "30561" "30562" "30563" "30564"
## [30565] "30565" "30566" "30567" "30568" "30569" "30570" "30571" "30572" "30573"
## [30574] "30574" "30575" "30576" "30577" "30578" "30579" "30580" "30581" "30582"
## [30583] "30583" "30584" "30585" "30586" "30587" "30588" "30589" "30590" "30591"
## [30592] "30592" "30593" "30594" "30595" "30596" "30597" "30598" "30599" "30600"
## [30601] "30601" "30602" "30603" "30604" "30605" "30606" "30607" "30608" "30609"
## [30610] "30610" "30611" "30612" "30613" "30614" "30615" "30616" "30617" "30618"
## [30619] "30619" "30620" "30621" "30622" "30623" "30624" "30625" "30626" "30627"
## [30628] "30628" "30629" "30630" "30631" "30632" "30633" "30634" "30635" "30636"
## [30637] "30637" "30638" "30639" "30640" "30641" "30642" "30643" "30644" "30645"
## [30646] "30646" "30647" "30648" "30649" "30650" "30651" "30652" "30653" "30654"
## [30655] "30655" "30656" "30657" "30658" "30659" "30660" "30661" "30662" "30663"
## [30664] "30664" "30665" "30666" "30667" "30668" "30669" "30670" "30671" "30672"
## [30673] "30673" "30674" "30675" "30676" "30677" "30678" "30679" "30680" "30681"
## [30682] "30682" "30683" "30684" "30685" "30686" "30687" "30688" "30689" "30690"
## [30691] "30691" "30692" "30693" "30694" "30695" "30696" "30697" "30698" "30699"
## [30700] "30700" "30701" "30702" "30703" "30704" "30705" "30706" "30707" "30708"
## [30709] "30709" "30710" "30711" "30712" "30713" "30714" "30715" "30716" "30717"
## [30718] "30718" "30719" "30720" "30721" "30722" "30723" "30724" "30725" "30726"
## [30727] "30727" "30728" "30729" "30730" "30731" "30732" "30733" "30734" "30735"
## [30736] "30736" "30737" "30738" "30739" "30740" "30741" "30742" "30743" "30744"
## [30745] "30745" "30746" "30747" "30748" "30749" "30750" "30751" "30752" "30753"
## [30754] "30754" "30755" "30756" "30757" "30758" "30759" "30760" "30761" "30762"
## [30763] "30763" "30764" "30765" "30766" "30767" "30768" "30769" "30770" "30771"
## [30772] "30772" "30773" "30774" "30775" "30776" "30777" "30778" "30779" "30780"
## [30781] "30781" "30782" "30783" "30784" "30785" "30786" "30787" "30788" "30789"
## [30790] "30790" "30791" "30792" "30793" "30794" "30795" "30796" "30797" "30798"
## [30799] "30799" "30800" "30801" "30802" "30803" "30804" "30805" "30806" "30807"
## [30808] "30808" "30809" "30810" "30811" "30812" "30813" "30814" "30815" "30816"
## [30817] "30817" "30818" "30819" "30820" "30821" "30822" "30823" "30824" "30825"
## [30826] "30826" "30827" "30828" "30829" "30830" "30831" "30832" "30833" "30834"
## [30835] "30835" "30836" "30837" "30838" "30839" "30840" "30841" "30842" "30843"
## [30844] "30844" "30845" "30846" "30847" "30848" "30849" "30850" "30851" "30852"
## [30853] "30853" "30854" "30855" "30856" "30857" "30858" "30859" "30860" "30861"
## [30862] "30862" "30863" "30864" "30865" "30866" "30867" "30868" "30869" "30870"
## [30871] "30871" "30872" "30873" "30874" "30875" "30876" "30877" "30878" "30879"
## [30880] "30880" "30881" "30882" "30883" "30884" "30885" "30886" "30887" "30888"
## [30889] "30889" "30890" "30891" "30892" "30893" "30894" "30895" "30896" "30897"
## [30898] "30898" "30899" "30900" "30901" "30902" "30903" "30904" "30905" "30906"
## [30907] "30907" "30908" "30909" "30910" "30911" "30912" "30913" "30914" "30915"
## [30916] "30916" "30917" "30918" "30919" "30920" "30921" "30922" "30923" "30924"
## [30925] "30925" "30926" "30927" "30928" "30929" "30930" "30931" "30932" "30933"
## [30934] "30934" "30935" "30936" "30937" "30938" "30939" "30940" "30941" "30942"
## [30943] "30943" "30944" "30945" "30946" "30947" "30948" "30949" "30950" "30951"
## [30952] "30952" "30953" "30954" "30955" "30956" "30957" "30958" "30959" "30960"
## [30961] "30961" "30962" "30963" "30964" "30965" "30966" "30967" "30968" "30969"
## [30970] "30970" "30971" "30972" "30973" "30974" "30975" "30976" "30977" "30978"
## [30979] "30979" "30980" "30981" "30982" "30983" "30984" "30985" "30986" "30987"
## [30988] "30988" "30989" "30990" "30991" "30992" "30993" "30994" "30995" "30996"
## [30997] "30997" "30998" "30999" "31000" "31001" "31002" "31003" "31004" "31005"
## [31006] "31006" "31007" "31008" "31009" "31010" "31011" "31012" "31013" "31014"
## [31015] "31015" "31016" "31017" "31018" "31019" "31020" "31021" "31022" "31023"
## [31024] "31024" "31025" "31026" "31027" "31028" "31029" "31030" "31031" "31032"
## [31033] "31033" "31034" "31035" "31036" "31037" "31038" "31039" "31040" "31041"
## [31042] "31042" "31043" "31044" "31045" "31046" "31047" "31048" "31049" "31050"
## [31051] "31051" "31052" "31053" "31054" "31055" "31056" "31057" "31058" "31059"
## [31060] "31060" "31061" "31062" "31063" "31064" "31065" "31066" "31067" "31068"
## [31069] "31069" "31070" "31071" "31072" "31073" "31074" "31075" "31076" "31077"
## [31078] "31078" "31079" "31080" "31081" "31082" "31083" "31084" "31085" "31086"
## [31087] "31087" "31088" "31089" "31090" "31091" "31092" "31093" "31094" "31095"
## [31096] "31096" "31097" "31098" "31099" "31100" "31101" "31102" "31103" "31104"
## [31105] "31105" "31106" "31107" "31108" "31109" "31110" "31111" "31112" "31113"
## [31114] "31114" "31115" "31116" "31117" "31118" "31119" "31120" "31121" "31122"
## [31123] "31123" "31124" "31125" "31126" "31127" "31128" "31129" "31130" "31131"
## [31132] "31132" "31133" "31134" "31135" "31136" "31137" "31138" "31139" "31140"
## [31141] "31141" "31142" "31143" "31144" "31145" "31146" "31147" "31148" "31149"
## [31150] "31150" "31151" "31152" "31153" "31154" "31155" "31156" "31157" "31158"
## [31159] "31159" "31160" "31161" "31162" "31163" "31164" "31165" "31166" "31167"
## [31168] "31168" "31169" "31170" "31171" "31172" "31173" "31174" "31175" "31176"
## [31177] "31177" "31178" "31179" "31180" "31181" "31182" "31183" "31184" "31185"
## [31186] "31186" "31187" "31188" "31189" "31190" "31191" "31192" "31193" "31194"
## [31195] "31195" "31196" "31197" "31198" "31199" "31200" "31201" "31202" "31203"
## [31204] "31204" "31205" "31206" "31207" "31208" "31209" "31210" "31211" "31212"
## [31213] "31213" "31214" "31215" "31216" "31217" "31218" "31219" "31220" "31221"
## [31222] "31222" "31223" "31224" "31225" "31226" "31227" "31228" "31229" "31230"
## [31231] "31231" "31232" "31233" "31234" "31235" "31236" "31237" "31238" "31239"
## [31240] "31240" "31241" "31242" "31243" "31244" "31245" "31246" "31247" "31248"
## [31249] "31249" "31250" "31251" "31252" "31253" "31254" "31255" "31256" "31257"
## [31258] "31258" "31259" "31260" "31261" "31262" "31263" "31264" "31265" "31266"
## [31267] "31267" "31268" "31269" "31270" "31271" "31272" "31273" "31274" "31275"
## [31276] "31276" "31277" "31278" "31279" "31280" "31281" "31282" "31283" "31284"
## [31285] "31285" "31286" "31287" "31288" "31289" "31290" "31291" "31292" "31293"
## [31294] "31294" "31295" "31296" "31297" "31298" "31299" "31300" "31301" "31302"
## [31303] "31303" "31304" "31305" "31306" "31307" "31308" "31309" "31310" "31311"
## [31312] "31312" "31313" "31314" "31315" "31316" "31317" "31318" "31319" "31320"
## [31321] "31321" "31322" "31323" "31324" "31325" "31326" "31327" "31328" "31329"
## [31330] "31330" "31331" "31332" "31333" "31334" "31335" "31336" "31337" "31338"
## [31339] "31339" "31340" "31341" "31342" "31343" "31344" "31345" "31346" "31347"
## [31348] "31348" "31349" "31350" "31351" "31352" "31353" "31354" "31355" "31356"
## [31357] "31357" "31358" "31359" "31360" "31361" "31362" "31363" "31364" "31365"
## [31366] "31366" "31367" "31368" "31369" "31370" "31371" "31372" "31373" "31374"
## [31375] "31375" "31376" "31377" "31378" "31379" "31380" "31381" "31382" "31383"
## [31384] "31384" "31385" "31386" "31387" "31388" "31389" "31390" "31391" "31392"
## [31393] "31393" "31394" "31395" "31396" "31397" "31398" "31399" "31400" "31401"
## [31402] "31402" "31403" "31404" "31405" "31406" "31407" "31408" "31409" "31410"
## [31411] "31411" "31412" "31413" "31414" "31415" "31416" "31417" "31418" "31419"
## [31420] "31420" "31421" "31422" "31423" "31424" "31425" "31426" "31427" "31428"
## [31429] "31429" "31430" "31431" "31432" "31433" "31434" "31435" "31436" "31437"
## [31438] "31438" "31439" "31440" "31441" "31442" "31443" "31444" "31445" "31446"
## [31447] "31447" "31448" "31449" "31450" "31451" "31452" "31453" "31454" "31455"
## [31456] "31456" "31457" "31458" "31459" "31460" "31461" "31462" "31463" "31464"
## [31465] "31465" "31466" "31467" "31468" "31469" "31470" "31471" "31472" "31473"
## [31474] "31474" "31475" "31476" "31477" "31478" "31479" "31480" "31481" "31482"
## [31483] "31483" "31484" "31485" "31486" "31487" "31488" "31489" "31490" "31491"
## [31492] "31492" "31493" "31494" "31495" "31496" "31497" "31498" "31499" "31500"
## [31501] "31501" "31502" "31503" "31504" "31505" "31506" "31507" "31508" "31509"
## [31510] "31510" "31511" "31512" "31513" "31514" "31515" "31516" "31517" "31518"
## [31519] "31519" "31520" "31521" "31522" "31523" "31524" "31525" "31526" "31527"
## [31528] "31528" "31529" "31530" "31531" "31532" "31533" "31534" "31535" "31536"
## [31537] "31537" "31538" "31539" "31540" "31541" "31542" "31543" "31544" "31545"
## [31546] "31546" "31547" "31548" "31549" "31550" "31551" "31552" "31553" "31554"
## [31555] "31555" "31556" "31557" "31558" "31559" "31560" "31561" "31562" "31563"
## [31564] "31564" "31565" "31566" "31567" "31568" "31569" "31570" "31571" "31572"
## [31573] "31573" "31574" "31575" "31576" "31577" "31578" "31579" "31580" "31581"
## [31582] "31582" "31583" "31584" "31585" "31586" "31587" "31588" "31589" "31590"
## [31591] "31591" "31592" "31593" "31594" "31595" "31596" "31597" "31598" "31599"
## [31600] "31600" "31601" "31602" "31603" "31604" "31605" "31606" "31607" "31608"
## [31609] "31609" "31610" "31611" "31612" "31613" "31614" "31615" "31616" "31617"
## [31618] "31618" "31619" "31620" "31621" "31622" "31623" "31624" "31625" "31626"
## [31627] "31627" "31628" "31629" "31630" "31631" "31632" "31633" "31634" "31635"
## [31636] "31636" "31637" "31638" "31639" "31640" "31641" "31642" "31643" "31644"
## [31645] "31645" "31646" "31647" "31648" "31649" "31650" "31651" "31652" "31653"
## [31654] "31654" "31655" "31656" "31657" "31658" "31659" "31660" "31661" "31662"
## [31663] "31663" "31664" "31665" "31666" "31667" "31668" "31669" "31670" "31671"
## [31672] "31672" "31673" "31674" "31675" "31676" "31677" "31678" "31679" "31680"
## [31681] "31681" "31682" "31683" "31684" "31685" "31686" "31687" "31688" "31689"
## [31690] "31690" "31691" "31692" "31693" "31694" "31695" "31696" "31697" "31698"
## [31699] "31699" "31700" "31701" "31702" "31703" "31704" "31705" "31706" "31707"
## [31708] "31708" "31709" "31710" "31711" "31712" "31713" "31714" "31715" "31716"
## [31717] "31717" "31718" "31719" "31720" "31721" "31722" "31723" "31724" "31725"
## [31726] "31726" "31727" "31728" "31729" "31730" "31731" "31732" "31733" "31734"
## [31735] "31735" "31736" "31737" "31738" "31739" "31740" "31741" "31742" "31743"
## [31744] "31744" "31745" "31746" "31747" "31748" "31749" "31750" "31751" "31752"
## [31753] "31753" "31754" "31755" "31756" "31757" "31758" "31759" "31760" "31761"
## [31762] "31762" "31763" "31764" "31765" "31766" "31767" "31768" "31769" "31770"
## [31771] "31771" "31772" "31773" "31774" "31775" "31776" "31777" "31778" "31779"
## [31780] "31780" "31781" "31782" "31783" "31784" "31785" "31786" "31787" "31788"
## [31789] "31789" "31790" "31791" "31792" "31793" "31794" "31795" "31796" "31797"
## [31798] "31798" "31799" "31800" "31801" "31802" "31803" "31804" "31805" "31806"
## [31807] "31807" "31808" "31809" "31810" "31811" "31812" "31813" "31814" "31815"
## [31816] "31816" "31817" "31818" "31819" "31820" "31821" "31822" "31823" "31824"
## [31825] "31825" "31826" "31827" "31828" "31829" "31830" "31831" "31832" "31833"
## [31834] "31834" "31835" "31836" "31837" "31838" "31839" "31840" "31841" "31842"
## [31843] "31843" "31844" "31845" "31846" "31847" "31848" "31849" "31850" "31851"
## [31852] "31852" "31853" "31854" "31855" "31856" "31857" "31858" "31859" "31860"
## [31861] "31861" "31862" "31863" "31864" "31865" "31866" "31867" "31868" "31869"
## [31870] "31870" "31871" "31872" "31873" "31874" "31875" "31876" "31877" "31878"
## [31879] "31879" "31880" "31881" "31882" "31883" "31884" "31885" "31886" "31887"
## [31888] "31888" "31889" "31890" "31891" "31892" "31893" "31894" "31895" "31896"
## [31897] "31897" "31898" "31899" "31900" "31901" "31902" "31903" "31904" "31905"
## [31906] "31906" "31907" "31908" "31909" "31910" "31911" "31912" "31913" "31914"
## [31915] "31915" "31916" "31917" "31918" "31919" "31920" "31921" "31922" "31923"
## [31924] "31924" "31925" "31926" "31927" "31928" "31929" "31930" "31931" "31932"
## [31933] "31933" "31934" "31935" "31936" "31937" "31938" "31939" "31940" "31941"
## [31942] "31942" "31943" "31944" "31945" "31946" "31947" "31948" "31949" "31950"
## [31951] "31951" "31952" "31953" "31954" "31955" "31956" "31957" "31958" "31959"
## [31960] "31960" "31961" "31962" "31963" "31964" "31965" "31966" "31967" "31968"
## [31969] "31969" "31970" "31971" "31972" "31973" "31974" "31975" "31976" "31977"
## [31978] "31978" "31979" "31980" "31981" "31982" "31983" "31984" "31985" "31986"
## [31987] "31987" "31988" "31989" "31990" "31991" "31992" "31993" "31994" "31995"
## [31996] "31996" "31997" "31998" "31999" "32000" "32001" "32002" "32003" "32004"
## [32005] "32005" "32006" "32007" "32008" "32009" "32010" "32011" "32012" "32013"
## [32014] "32014" "32015" "32016" "32017" "32018" "32019" "32020" "32021" "32022"
## [32023] "32023" "32024" "32025" "32026" "32027" "32028" "32029" "32030" "32031"
## [32032] "32032" "32033" "32034" "32035" "32036" "32037" "32038" "32039" "32040"
## [32041] "32041" "32042" "32043" "32044" "32045" "32046" "32047" "32048" "32049"
## [32050] "32050" "32051" "32052" "32053" "32054" "32055" "32056" "32057" "32058"
## [32059] "32059" "32060" "32061" "32062" "32063" "32064" "32065" "32066" "32067"
## [32068] "32068" "32069" "32070" "32071" "32072" "32073" "32074" "32075" "32076"
## [32077] "32077" "32078" "32079" "32080" "32081" "32082" "32083" "32084" "32085"
## [32086] "32086" "32087" "32088" "32089" "32090" "32091" "32092" "32093" "32094"
## [32095] "32095" "32096" "32097" "32098" "32099" "32100" "32101" "32102" "32103"
## [32104] "32104" "32105" "32106" "32107" "32108" "32109" "32110" "32111" "32112"
## [32113] "32113" "32114" "32115" "32116" "32117" "32118" "32119" "32120" "32121"
## [32122] "32122" "32123" "32124" "32125" "32126" "32127" "32128" "32129" "32130"
## [32131] "32131" "32132" "32133" "32134" "32135" "32136" "32137" "32138" "32139"
## [32140] "32140" "32141" "32142" "32143" "32144" "32145" "32146" "32147" "32148"
## [32149] "32149" "32150" "32151" "32152" "32153" "32154" "32155" "32156" "32157"
## [32158] "32158" "32159" "32160" "32161" "32162" "32163" "32164" "32165" "32166"
## [32167] "32167" "32168" "32169" "32170" "32171" "32172" "32173" "32174" "32175"
## [32176] "32176" "32177" "32178" "32179" "32180" "32181" "32182" "32183" "32184"
## [32185] "32185" "32186" "32187" "32188" "32189" "32190" "32191" "32192" "32193"
## [32194] "32194" "32195" "32196" "32197" "32198" "32199" "32200" "32201" "32202"
## [32203] "32203" "32204" "32205" "32206" "32207" "32208" "32209" "32210" "32211"
## [32212] "32212" "32213" "32214" "32215" "32216" "32217" "32218" "32219" "32220"
## [32221] "32221" "32222" "32223" "32224" "32225" "32226" "32227" "32228" "32229"
## [32230] "32230" "32231" "32232" "32233" "32234" "32235" "32236" "32237" "32238"
## [32239] "32239" "32240" "32241" "32242" "32243" "32244" "32245" "32246" "32247"
## [32248] "32248" "32249" "32250" "32251" "32252" "32253" "32254" "32255" "32256"
## [32257] "32257" "32258" "32259" "32260" "32261" "32262" "32263" "32264" "32265"
## [32266] "32266" "32267" "32268" "32269" "32270" "32271" "32272" "32273" "32274"
## [32275] "32275" "32276" "32277" "32278" "32279" "32280" "32281" "32282" "32283"
## [32284] "32284" "32285" "32286" "32287" "32288" "32289" "32290" "32291" "32292"
## [32293] "32293" "32294" "32295" "32296" "32297" "32298" "32299" "32300" "32301"
## [32302] "32302" "32303" "32304" "32305" "32306" "32307" "32308" "32309" "32310"
## [32311] "32311" "32312" "32313" "32314" "32315" "32316" "32317" "32318" "32319"
## [32320] "32320" "32321" "32322" "32323" "32324" "32325" "32326" "32327" "32328"
## [32329] "32329" "32330" "32331" "32332" "32333" "32334" "32335" "32336" "32337"
## [32338] "32338" "32339" "32340" "32341" "32342" "32343" "32344" "32345" "32346"
## [32347] "32347" "32348" "32349" "32350" "32351" "32352" "32353" "32354" "32355"
## [32356] "32356" "32357" "32358" "32359" "32360" "32361" "32362" "32363" "32364"
## [32365] "32365" "32366" "32367" "32368" "32369" "32370" "32371" "32372" "32373"
## [32374] "32374" "32375" "32376" "32377" "32378" "32379" "32380" "32381" "32382"
## [32383] "32383" "32384" "32385" "32386" "32387" "32388" "32389" "32390" "32391"
## [32392] "32392" "32393" "32394" "32395" "32396" "32397" "32398" "32399" "32400"
## [32401] "32401" "32402" "32403" "32404" "32405" "32406" "32407" "32408" "32409"
## [32410] "32410" "32411" "32412" "32413" "32414" "32415" "32416" "32417" "32418"
## [32419] "32419" "32420" "32421" "32422" "32423" "32424" "32425" "32426" "32427"
## [32428] "32428" "32429" "32430" "32431" "32432" "32433" "32434" "32435" "32436"
## [32437] "32437" "32438" "32439" "32440" "32441" "32442" "32443" "32444" "32445"
## [32446] "32446" "32447" "32448" "32449" "32450" "32451" "32452" "32453" "32454"
## [32455] "32455" "32456" "32457" "32458" "32459" "32460" "32461" "32462" "32463"
## [32464] "32464" "32465" "32466" "32467" "32468" "32469" "32470" "32471" "32472"
## [32473] "32473" "32474" "32475" "32476" "32477" "32478" "32479" "32480" "32481"
## [32482] "32482" "32483" "32484" "32485" "32486" "32487" "32488" "32489" "32490"
## [32491] "32491" "32492" "32493" "32494" "32495" "32496" "32497" "32498" "32499"
## [32500] "32500" "32501" "32502" "32503" "32504" "32505" "32506" "32507" "32508"
## [32509] "32509" "32510" "32511" "32512" "32513" "32514" "32515" "32516" "32517"
## [32518] "32518" "32519" "32520" "32521" "32522" "32523" "32524" "32525" "32526"
## [32527] "32527" "32528" "32529" "32530" "32531" "32532" "32533" "32534" "32535"
## [32536] "32536" "32537" "32538" "32539" "32540" "32541" "32542" "32543" "32544"
## [32545] "32545" "32546" "32547" "32548" "32549" "32550" "32551" "32552" "32553"
## [32554] "32554" "32555" "32556" "32557" "32558" "32559" "32560" "32561" "32562"
## [32563] "32563" "32564" "32565" "32566" "32567" "32568" "32569" "32570" "32571"
## [32572] "32572" "32573" "32574" "32575" "32576" "32577" "32578" "32579" "32580"
## [32581] "32581" "32582" "32583" "32584" "32585" "32586" "32587" "32588" "32589"
## [32590] "32590" "32591" "32592" "32593" "32594" "32595" "32596" "32597" "32598"
## [32599] "32599" "32600" "32601" "32602" "32603" "32604" "32605" "32606" "32607"
## [32608] "32608" "32609" "32610" "32611" "32612" "32613" "32614" "32615" "32616"
## [32617] "32617" "32618" "32619" "32620" "32621" "32622" "32623" "32624" "32625"
## [32626] "32626" "32627" "32628" "32629" "32630" "32631" "32632" "32633" "32634"
## [32635] "32635" "32636" "32637" "32638" "32639" "32640" "32641" "32642" "32643"
## [32644] "32644" "32645" "32646" "32647" "32648" "32649" "32650" "32651" "32652"
## [32653] "32653" "32654" "32655" "32656" "32657" "32658" "32659" "32660" "32661"
## [32662] "32662" "32663" "32664" "32665" "32666" "32667" "32668" "32669" "32670"
## [32671] "32671" "32672" "32673" "32674" "32675" "32676" "32677" "32678" "32679"
## [32680] "32680" "32681" "32682" "32683" "32684" "32685" "32686" "32687" "32688"
## [32689] "32689" "32690" "32691" "32692" "32693" "32694" "32695" "32696" "32697"
## [32698] "32698" "32699" "32700" "32701" "32702" "32703" "32704" "32705" "32706"
## [32707] "32707" "32708" "32709" "32710" "32711" "32712" "32713" "32714" "32715"
## [32716] "32716" "32717" "32718" "32719" "32720" "32721" "32722" "32723" "32724"
## [32725] "32725" "32726" "32727" "32728" "32729" "32730" "32731" "32732" "32733"
## [32734] "32734" "32735" "32736" "32737" "32738" "32739" "32740" "32741" "32742"
## [32743] "32743" "32744" "32745" "32746" "32747" "32748" "32749" "32750" "32751"
## [32752] "32752" "32753" "32754" "32755" "32756" "32757" "32758" "32759" "32760"
## [32761] "32761" "32762" "32763" "32764" "32765" "32766" "32767" "32768" "32769"
## [32770] "32770" "32771" "32772" "32773" "32774" "32775" "32776" "32777" "32778"
## [32779] "32779" "32780" "32781" "32782" "32783" "32784" "32785" "32786" "32787"
## [32788] "32788" "32789" "32790" "32791" "32792" "32793" "32794" "32795" "32796"
## [32797] "32797" "32798" "32799" "32800" "32801" "32802" "32803" "32804" "32805"
## [32806] "32806" "32807" "32808" "32809" "32810" "32811" "32812" "32813" "32814"
## [32815] "32815" "32816" "32817" "32818" "32819" "32820" "32821" "32822" "32823"
## [32824] "32824" "32825" "32826" "32827" "32828" "32829" "32830" "32831" "32832"
## [32833] "32833" "32834" "32835" "32836" "32837" "32838" "32839" "32840" "32841"
## [32842] "32842" "32843" "32844" "32845" "32846" "32847" "32848" "32849" "32850"
## [32851] "32851" "32852" "32853" "32854" "32855" "32856" "32857" "32858" "32859"
## [32860] "32860" "32861" "32862" "32863" "32864" "32865" "32866" "32867" "32868"
## [32869] "32869" "32870" "32871" "32872" "32873" "32874" "32875" "32876" "32877"
## [32878] "32878" "32879" "32880" "32881" "32882" "32883" "32884" "32885" "32886"
## [32887] "32887" "32888" "32889" "32890" "32891" "32892" "32893" "32894" "32895"
## [32896] "32896" "32897" "32898" "32899" "32900" "32901" "32902" "32903" "32904"
## [32905] "32905" "32906" "32907" "32908" "32909" "32910" "32911" "32912" "32913"
## [32914] "32914" "32915" "32916" "32917" "32918" "32919" "32920" "32921" "32922"
## [32923] "32923" "32924" "32925" "32926" "32927" "32928" "32929" "32930" "32931"
## [32932] "32932" "32933" "32934" "32935" "32936" "32937" "32938" "32939" "32940"
## [32941] "32941" "32942" "32943" "32944" "32945" "32946" "32947" "32948" "32949"
## [32950] "32950" "32951" "32952" "32953" "32954" "32955" "32956" "32957" "32958"
## [32959] "32959" "32960" "32961" "32962" "32963" "32964" "32965" "32966" "32967"
## [32968] "32968" "32969" "32970" "32971" "32972" "32973" "32974" "32975" "32976"
## [32977] "32977" "32978" "32979" "32980" "32981" "32982" "32983" "32984" "32985"
## [32986] "32986" "32987" "32988" "32989" "32990" "32991" "32992" "32993" "32994"
## [32995] "32995" "32996" "32997" "32998" "32999" "33000" "33001" "33002" "33003"
## [33004] "33004" "33005" "33006" "33007" "33008" "33009" "33010" "33011" "33012"
## [33013] "33013" "33014" "33015" "33016" "33017" "33018" "33019" "33020" "33021"
## [33022] "33022" "33023" "33024" "33025" "33026" "33027" "33028" "33029" "33030"
## [33031] "33031" "33032" "33033" "33034" "33035" "33036" "33037" "33038" "33039"
## [33040] "33040" "33041" "33042" "33043" "33044" "33045" "33046" "33047" "33048"
## [33049] "33049" "33050" "33051" "33052" "33053" "33054" "33055" "33056" "33057"
## [33058] "33058" "33059" "33060" "33061" "33062" "33063" "33064" "33065" "33066"
## [33067] "33067" "33068" "33069" "33070" "33071" "33072" "33073" "33074" "33075"
## [33076] "33076" "33077" "33078" "33079" "33080" "33081" "33082" "33083" "33084"
## [33085] "33085" "33086" "33087" "33088" "33089" "33090" "33091" "33092" "33093"
## [33094] "33094" "33095" "33096" "33097" "33098" "33099" "33100" "33101" "33102"
## [33103] "33103" "33104" "33105" "33106" "33107" "33108" "33109" "33110" "33111"
## [33112] "33112" "33113" "33114" "33115" "33116" "33117" "33118" "33119" "33120"
## [33121] "33121" "33122" "33123" "33124" "33125" "33126" "33127" "33128" "33129"
## [33130] "33130" "33131" "33132" "33133" "33134" "33135" "33136" "33137" "33138"
## [33139] "33139" "33140" "33141" "33142" "33143" "33144" "33145" "33146" "33147"
## [33148] "33148" "33149" "33150" "33151" "33152" "33153" "33154" "33155" "33156"
## [33157] "33157" "33158" "33159" "33160" "33161" "33162" "33163" "33164" "33165"
## [33166] "33166" "33167" "33168" "33169" "33170" "33171" "33172" "33173" "33174"
## [33175] "33175" "33176" "33177" "33178" "33179" "33180" "33181" "33182" "33183"
## [33184] "33184" "33185" "33186" "33187" "33188" "33189" "33190" "33191" "33192"
## [33193] "33193" "33194" "33195" "33196" "33197" "33198" "33199" "33200" "33201"
## [33202] "33202" "33203" "33204" "33205" "33206" "33207" "33208" "33209" "33210"
## [33211] "33211" "33212" "33213" "33214" "33215" "33216" "33217" "33218" "33219"
## [33220] "33220" "33221" "33222" "33223" "33224" "33225" "33226" "33227" "33228"
## [33229] "33229" "33230" "33231" "33232" "33233" "33234" "33235" "33236" "33237"
## [33238] "33238" "33239" "33240" "33241" "33242" "33243" "33244" "33245" "33246"
## [33247] "33247" "33248" "33249" "33250" "33251" "33252" "33253" "33254" "33255"
## [33256] "33256" "33257" "33258" "33259" "33260" "33261" "33262" "33263" "33264"
## [33265] "33265" "33266" "33267" "33268" "33269" "33270" "33271" "33272" "33273"
## [33274] "33274" "33275" "33276" "33277" "33278" "33279" "33280" "33281" "33282"
## [33283] "33283" "33284" "33285" "33286" "33287" "33288" "33289" "33290" "33291"
## [33292] "33292" "33293" "33294" "33295" "33296" "33297" "33298" "33299" "33300"
## [33301] "33301" "33302" "33303" "33304" "33305" "33306" "33307" "33308" "33309"
## [33310] "33310" "33311" "33312" "33313" "33314" "33315" "33316" "33317" "33318"
## [33319] "33319" "33320" "33321" "33322" "33323" "33324" "33325" "33326" "33327"
## [33328] "33328" "33329" "33330" "33331" "33332" "33333" "33334" "33335" "33336"
## [33337] "33337" "33338" "33339" "33340" "33341" "33342" "33343" "33344" "33345"
## [33346] "33346" "33347" "33348" "33349" "33350" "33351" "33352" "33353" "33354"
## [33355] "33355" "33356" "33357" "33358" "33359" "33360" "33361" "33362" "33363"
## [33364] "33364" "33365" "33366" "33367" "33368" "33369" "33370" "33371" "33372"
## [33373] "33373" "33374" "33375" "33376" "33377" "33378" "33379" "33380" "33381"
## [33382] "33382" "33383" "33384" "33385" "33386" "33387" "33388" "33389" "33390"
## [33391] "33391" "33392" "33393" "33394" "33395" "33396" "33397" "33398" "33399"
## [33400] "33400" "33401" "33402" "33403" "33404" "33405" "33406" "33407" "33408"
## [33409] "33409" "33410" "33411" "33412" "33413" "33414" "33415" "33416" "33417"
## [33418] "33418" "33419" "33420" "33421" "33422" "33423" "33424" "33425" "33426"
## [33427] "33427" "33428" "33429" "33430" "33431" "33432" "33433" "33434" "33435"
## [33436] "33436" "33437" "33438" "33439" "33440" "33441" "33442" "33443" "33444"
## [33445] "33445" "33446" "33447" "33448" "33449" "33450" "33451" "33452" "33453"
## [33454] "33454" "33455" "33456" "33457" "33458" "33459" "33460" "33461" "33462"
## [33463] "33463" "33464" "33465" "33466" "33467" "33468" "33469" "33470" "33471"
## [33472] "33472" "33473" "33474" "33475" "33476" "33477" "33478" "33479" "33480"
## [33481] "33481" "33482" "33483" "33484" "33485" "33486" "33487" "33488" "33489"
## [33490] "33490" "33491" "33492" "33493" "33494" "33495" "33496" "33497" "33498"
## [33499] "33499" "33500" "33501" "33502" "33503" "33504" "33505" "33506" "33507"
## [33508] "33508" "33509" "33510" "33511" "33512" "33513" "33514" "33515" "33516"
## [33517] "33517" "33518" "33519" "33520" "33521" "33522" "33523" "33524" "33525"
## [33526] "33526" "33527" "33528" "33529" "33530" "33531" "33532" "33533" "33534"
## [33535] "33535" "33536" "33537" "33538" "33539" "33540" "33541" "33542" "33543"
## [33544] "33544" "33545" "33546" "33547" "33548" "33549" "33550" "33551" "33552"
## [33553] "33553" "33554" "33555" "33556" "33557" "33558" "33559" "33560" "33561"
## [33562] "33562" "33563" "33564" "33565" "33566" "33567" "33568" "33569" "33570"
## [33571] "33571" "33572" "33573" "33574" "33575" "33576" "33577" "33578" "33579"
## [33580] "33580" "33581" "33582" "33583" "33584" "33585" "33586" "33587" "33588"
## [33589] "33589" "33590" "33591" "33592" "33593" "33594" "33595" "33596" "33597"
## [33598] "33598" "33599" "33600" "33601" "33602" "33603" "33604" "33605" "33606"
## [33607] "33607" "33608" "33609" "33610" "33611" "33612" "33613" "33614" "33615"
## [33616] "33616" "33617" "33618" "33619" "33620" "33621" "33622" "33623" "33624"
## [33625] "33625" "33626" "33627" "33628" "33629" "33630" "33631" "33632" "33633"
## [33634] "33634" "33635" "33636" "33637" "33638" "33639" "33640" "33641" "33642"
## [33643] "33643" "33644" "33645" "33646" "33647" "33648" "33649" "33650" "33651"
## [33652] "33652" "33653" "33654" "33655" "33656" "33657" "33658" "33659" "33660"
## [33661] "33661" "33662" "33663" "33664" "33665" "33666" "33667" "33668" "33669"
## [33670] "33670" "33671" "33672" "33673" "33674" "33675" "33676" "33677" "33678"
## [33679] "33679" "33680" "33681" "33682" "33683" "33684" "33685" "33686" "33687"
## [33688] "33688" "33689" "33690" "33691" "33692" "33693" "33694" "33695" "33696"
## [33697] "33697" "33698" "33699" "33700" "33701" "33702" "33703" "33704" "33705"
## [33706] "33706" "33707" "33708" "33709" "33710" "33711" "33712" "33713" "33714"
## [33715] "33715" "33716" "33717" "33718" "33719" "33720" "33721" "33722" "33723"
## [33724] "33724" "33725" "33726" "33727" "33728" "33729" "33730" "33731" "33732"
## [33733] "33733" "33734" "33735" "33736" "33737" "33738" "33739" "33740" "33741"
## [33742] "33742" "33743" "33744" "33745" "33746" "33747" "33748" "33749" "33750"
## [33751] "33751" "33752" "33753" "33754" "33755" "33756" "33757" "33758" "33759"
## [33760] "33760" "33761" "33762" "33763" "33764" "33765" "33766" "33767" "33768"
## [33769] "33769" "33770" "33771" "33772" "33773" "33774" "33775" "33776" "33777"
## [33778] "33778" "33779" "33780" "33781" "33782" "33783" "33784" "33785" "33786"
## [33787] "33787" "33788" "33789" "33790" "33791" "33792" "33793" "33794" "33795"
## [33796] "33796" "33797" "33798" "33799" "33800" "33801" "33802" "33803" "33804"
## [33805] "33805" "33806" "33807" "33808" "33809" "33810" "33811" "33812" "33813"
## [33814] "33814" "33815" "33816" "33817" "33818" "33819" "33820" "33821" "33822"
## [33823] "33823" "33824" "33825" "33826" "33827" "33828" "33829" "33830" "33831"
## [33832] "33832" "33833" "33834" "33835" "33836" "33837" "33838" "33839" "33840"
## [33841] "33841" "33842" "33843" "33844" "33845" "33846" "33847" "33848" "33849"
## [33850] "33850" "33851" "33852" "33853" "33854" "33855" "33856" "33857" "33858"
## [33859] "33859" "33860" "33861" "33862" "33863" "33864" "33865" "33866" "33867"
## [33868] "33868" "33869" "33870" "33871" "33872" "33873" "33874" "33875" "33876"
## [33877] "33877" "33878" "33879" "33880" "33881" "33882" "33883" "33884" "33885"
## [33886] "33886" "33887" "33888" "33889" "33890" "33891" "33892" "33893" "33894"
## [33895] "33895" "33896" "33897" "33898" "33899" "33900" "33901" "33902" "33903"
## [33904] "33904" "33905" "33906" "33907" "33908" "33909" "33910" "33911" "33912"
## [33913] "33913" "33914" "33915" "33916" "33917" "33918" "33919" "33920" "33921"
## [33922] "33922" "33923" "33924" "33925" "33926" "33927" "33928" "33929" "33930"
## [33931] "33931" "33932" "33933" "33934" "33935" "33936" "33937" "33938" "33939"
## [33940] "33940" "33941" "33942" "33943" "33944" "33945" "33946" "33947" "33948"
## [33949] "33949" "33950" "33951" "33952" "33953" "33954" "33955" "33956" "33957"
## [33958] "33958" "33959" "33960" "33961" "33962" "33963" "33964" "33965" "33966"
## [33967] "33967" "33968" "33969" "33970" "33971" "33972" "33973" "33974" "33975"
## [33976] "33976" "33977" "33978" "33979" "33980" "33981" "33982" "33983" "33984"
## [33985] "33985" "33986" "33987" "33988" "33989" "33990" "33991" "33992" "33993"
## [33994] "33994" "33995" "33996" "33997" "33998" "33999" "34000" "34001" "34002"
## [34003] "34003" "34004" "34005" "34006" "34007" "34008" "34009" "34010" "34011"
## [34012] "34012" "34013" "34014" "34015" "34016" "34017" "34018" "34019" "34020"
## [34021] "34021" "34022" "34023" "34024" "34025" "34026" "34027" "34028" "34029"
## [34030] "34030" "34031" "34032" "34033" "34034" "34035" "34036" "34037" "34038"
## [34039] "34039" "34040" "34041" "34042" "34043" "34044" "34045" "34046" "34047"
## [34048] "34048" "34049" "34050" "34051" "34052" "34053" "34054" "34055" "34056"
## [34057] "34057" "34058" "34059" "34060" "34061" "34062" "34063" "34064" "34065"
## [34066] "34066" "34067" "34068" "34069" "34070" "34071" "34072" "34073" "34074"
## [34075] "34075" "34076" "34077" "34078" "34079" "34080" "34081" "34082" "34083"
## [34084] "34084" "34085" "34086" "34087" "34088" "34089" "34090" "34091" "34092"
## [34093] "34093" "34094" "34095" "34096" "34097" "34098" "34099" "34100" "34101"
## [34102] "34102" "34103" "34104" "34105" "34106" "34107" "34108" "34109" "34110"
## [34111] "34111" "34112" "34113" "34114" "34115" "34116" "34117" "34118" "34119"
## [34120] "34120" "34121" "34122" "34123" "34124" "34125" "34126" "34127" "34128"
## [34129] "34129" "34130" "34131" "34132" "34133" "34134" "34135" "34136" "34137"
## [34138] "34138" "34139" "34140" "34141" "34142" "34143" "34144" "34145" "34146"
## [34147] "34147" "34148" "34149" "34150" "34151" "34152" "34153" "34154" "34155"
## [34156] "34156" "34157" "34158" "34159" "34160" "34161" "34162" "34163" "34164"
## [34165] "34165" "34166" "34167" "34168" "34169" "34170" "34171" "34172" "34173"
## [34174] "34174" "34175" "34176" "34177" "34178" "34179" "34180" "34181" "34182"
## [34183] "34183" "34184" "34185" "34186" "34187" "34188" "34189" "34190" "34191"
## [34192] "34192" "34193" "34194" "34195" "34196" "34197" "34198" "34199" "34200"
## [34201] "34201" "34202" "34203" "34204" "34205" "34206" "34207" "34208" "34209"
## [34210] "34210" "34211" "34212" "34213" "34214" "34215" "34216" "34217" "34218"
## [34219] "34219" "34220" "34221" "34222" "34223" "34224" "34225" "34226" "34227"
## [34228] "34228" "34229" "34230" "34231" "34232" "34233" "34234" "34235" "34236"
## [34237] "34237" "34238" "34239" "34240" "34241" "34242" "34243" "34244" "34245"
## [34246] "34246" "34247" "34248" "34249" "34250" "34251" "34252" "34253" "34254"
## [34255] "34255" "34256" "34257" "34258" "34259" "34260" "34261" "34262" "34263"
## [34264] "34264" "34265" "34266" "34267" "34268" "34269" "34270" "34271" "34272"
## [34273] "34273" "34274" "34275" "34276" "34277" "34278" "34279" "34280" "34281"
## [34282] "34282" "34283" "34284" "34285" "34286" "34287" "34288" "34289" "34290"
## [34291] "34291" "34292" "34293" "34294" "34295" "34296" "34297" "34298" "34299"
## [34300] "34300" "34301" "34302" "34303" "34304" "34305" "34306" "34307" "34308"
## [34309] "34309" "34310" "34311" "34312" "34313" "34314" "34315" "34316" "34317"
## [34318] "34318" "34319" "34320" "34321" "34322" "34323" "34324" "34325" "34326"
## [34327] "34327" "34328" "34329" "34330" "34331" "34332" "34333" "34334" "34335"
## [34336] "34336" "34337" "34338" "34339" "34340" "34341" "34342" "34343" "34344"
## [34345] "34345" "34346" "34347" "34348" "34349" "34350" "34351" "34352" "34353"
## [34354] "34354" "34355" "34356" "34357" "34358" "34359" "34360" "34361" "34362"
## [34363] "34363" "34364" "34365" "34366" "34367" "34368" "34369" "34370" "34371"
## [34372] "34372" "34373" "34374" "34375" "34376" "34377" "34378" "34379" "34380"
## [34381] "34381" "34382" "34383" "34384" "34385" "34386" "34387" "34388" "34389"
## [34390] "34390" "34391" "34392" "34393" "34394" "34395" "34396" "34397" "34398"
## [34399] "34399" "34400" "34401" "34402" "34403" "34404" "34405" "34406" "34407"
## [34408] "34408" "34409" "34410" "34411" "34412" "34413" "34414" "34415" "34416"
## [34417] "34417" "34418" "34419" "34420" "34421" "34422" "34423" "34424" "34425"
## [34426] "34426" "34427" "34428" "34429" "34430" "34431" "34432" "34433" "34434"
## [34435] "34435" "34436" "34437" "34438" "34439" "34440" "34441" "34442" "34443"
## [34444] "34444" "34445" "34446" "34447" "34448" "34449" "34450" "34451" "34452"
## [34453] "34453" "34454" "34455" "34456" "34457" "34458" "34459" "34460" "34461"
## [34462] "34462" "34463" "34464" "34465" "34466" "34467" "34468" "34469" "34470"
## [34471] "34471" "34472" "34473" "34474" "34475" "34476" "34477" "34478" "34479"
## [34480] "34480" "34481" "34482" "34483" "34484" "34485" "34486" "34487" "34488"
## [34489] "34489" "34490" "34491" "34492" "34493" "34494" "34495" "34496" "34497"
## [34498] "34498" "34499" "34500" "34501" "34502" "34503" "34504" "34505" "34506"
## [34507] "34507" "34508" "34509" "34510" "34511" "34512" "34513" "34514" "34515"
## [34516] "34516" "34517" "34518" "34519" "34520" "34521" "34522" "34523" "34524"
## [34525] "34525" "34526" "34527" "34528" "34529" "34530" "34531" "34532" "34533"
## [34534] "34534" "34535" "34536" "34537" "34538" "34539" "34540" "34541" "34542"
## [34543] "34543" "34544" "34545" "34546" "34547" "34548" "34549" "34550" "34551"
## [34552] "34552" "34553" "34554" "34555" "34556" "34557" "34558" "34559" "34560"
## [34561] "34561" "34562" "34563" "34564" "34565" "34566" "34567" "34568" "34569"
## [34570] "34570" "34571" "34572" "34573" "34574" "34575" "34576" "34577" "34578"
## [34579] "34579" "34580" "34581" "34582" "34583" "34584" "34585" "34586" "34587"
## [34588] "34588" "34589" "34590" "34591" "34592" "34593" "34594" "34595" "34596"
## [34597] "34597" "34598" "34599" "34600" "34601" "34602" "34603" "34604" "34605"
## [34606] "34606" "34607" "34608" "34609" "34610" "34611" "34612" "34613" "34614"
## [34615] "34615" "34616" "34617" "34618" "34619" "34620" "34621" "34622" "34623"
## [34624] "34624" "34625" "34626" "34627" "34628" "34629" "34630" "34631" "34632"
## [34633] "34633" "34634" "34635" "34636" "34637" "34638" "34639" "34640" "34641"
## [34642] "34642" "34643" "34644" "34645" "34646" "34647" "34648" "34649" "34650"
## [34651] "34651" "34652" "34653" "34654" "34655" "34656" "34657" "34658" "34659"
## [34660] "34660" "34661" "34662" "34663" "34664" "34665" "34666" "34667" "34668"
## [34669] "34669" "34670" "34671" "34672" "34673" "34674" "34675" "34676" "34677"
## [34678] "34678" "34679" "34680" "34681" "34682" "34683" "34684" "34685" "34686"
## [34687] "34687" "34688" "34689" "34690" "34691" "34692" "34693" "34694" "34695"
## [34696] "34696" "34697" "34698" "34699" "34700" "34701" "34702" "34703" "34704"
## [34705] "34705" "34706" "34707" "34708" "34709" "34710" "34711" "34712" "34713"
## [34714] "34714" "34715" "34716" "34717" "34718" "34719" "34720" "34721" "34722"
## [34723] "34723" "34724" "34725" "34726" "34727" "34728" "34729" "34730" "34731"
## [34732] "34732" "34733" "34734" "34735" "34736" "34737" "34738" "34739" "34740"
## [34741] "34741" "34742" "34743" "34744" "34745" "34746" "34747" "34748" "34749"
## [34750] "34750" "34751" "34752" "34753" "34754" "34755" "34756" "34757" "34758"
## [34759] "34759" "34760" "34761" "34762" "34763" "34764" "34765" "34766" "34767"
## [34768] "34768" "34769" "34770" "34771" "34772" "34773" "34774" "34775" "34776"
## [34777] "34777" "34778" "34779" "34780" "34781" "34782" "34783" "34784" "34785"
## [34786] "34786"
# Summary
str(surveys)
## spc_tbl_ [34,786 × 13] (S3: spec_tbl_df/tbl_df/tbl/data.frame)
## $ record_id : num [1:34786] 1 72 224 266 349 363 435 506 588 661 ...
## $ month : num [1:34786] 7 8 9 10 11 11 12 1 2 3 ...
## $ day : num [1:34786] 16 19 13 16 12 12 10 8 18 11 ...
## $ year : num [1:34786] 1977 1977 1977 1977 1977 ...
## $ plot_id : num [1:34786] 2 2 2 2 2 2 2 2 2 2 ...
## $ species_id : chr [1:34786] "NL" "NL" "NL" "NL" ...
## $ sex : chr [1:34786] "M" "M" NA NA ...
## $ hindfoot_length: num [1:34786] 32 31 NA NA NA NA NA NA NA NA ...
## $ weight : num [1:34786] NA NA NA NA NA NA NA NA 218 NA ...
## $ genus : chr [1:34786] "Neotoma" "Neotoma" "Neotoma" "Neotoma" ...
## $ species : chr [1:34786] "albigula" "albigula" "albigula" "albigula" ...
## $ taxa : chr [1:34786] "Rodent" "Rodent" "Rodent" "Rodent" ...
## $ plot_type : chr [1:34786] "Control" "Control" "Control" "Control" ...
## - attr(*, "spec")=
## .. cols(
## .. record_id = col_double(),
## .. month = col_double(),
## .. day = col_double(),
## .. year = col_double(),
## .. plot_id = col_double(),
## .. species_id = col_character(),
## .. sex = col_character(),
## .. hindfoot_length = col_double(),
## .. weight = col_double(),
## .. genus = col_character(),
## .. species = col_character(),
## .. taxa = col_character(),
## .. plot_type = col_character()
## .. )
## - attr(*, "problems")=<externalptr>
summary(surveys)
## record_id month day year plot_id
## Min. : 1 Min. : 1.000 Min. : 1.0 Min. :1977 Min. : 1.00
## 1st Qu.: 8964 1st Qu.: 4.000 1st Qu.: 9.0 1st Qu.:1984 1st Qu.: 5.00
## Median :17762 Median : 6.000 Median :16.0 Median :1990 Median :11.00
## Mean :17804 Mean : 6.474 Mean :16.1 Mean :1990 Mean :11.34
## 3rd Qu.:26655 3rd Qu.:10.000 3rd Qu.:23.0 3rd Qu.:1997 3rd Qu.:17.00
## Max. :35548 Max. :12.000 Max. :31.0 Max. :2002 Max. :24.00
##
## species_id sex hindfoot_length weight
## Length:34786 Length:34786 Min. : 2.00 Min. : 4.00
## Class :character Class :character 1st Qu.:21.00 1st Qu.: 20.00
## Mode :character Mode :character Median :32.00 Median : 37.00
## Mean :29.29 Mean : 42.67
## 3rd Qu.:36.00 3rd Qu.: 48.00
## Max. :70.00 Max. :280.00
## NA's :3348 NA's :2503
## genus species taxa plot_type
## Length:34786 Length:34786 Length:34786 Length:34786
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## The class of surveys is tibble
## It has 34786 rows and 13 columns
Indexing and subsetting data frames
# We can extract specific values by specifying row and column indices
# in the format:
# data_frame[row_index, column_index]
# For instance, to extract the first row and column from surveys:
surveys[1, 1]
## # A tibble: 1 × 1
## record_id
## <dbl>
## 1 1
# First row, sixth column:
surveys[1, 6]
## # A tibble: 1 × 1
## species_id
## <chr>
## 1 NL
# We can also use shortcuts to select a number of rows or columns at once
# To select all columns, leave the column index blank
# For instance, to select all columns for the first row:
surveys[1, ]
## # A tibble: 1 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 1 7 16 1977 2 NL M 32 NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
# The same shortcut works for rows --
# To select the first column across all rows:
surveys[, 1]
## # A tibble: 34,786 × 1
## record_id
## <dbl>
## 1 1
## 2 72
## 3 224
## 4 266
## 5 349
## 6 363
## 7 435
## 8 506
## 9 588
## 10 661
## # ℹ 34,776 more rows
# An even shorter way to select first column across all rows:
surveys[1] # No comma!
## # A tibble: 34,786 × 1
## record_id
## <dbl>
## 1 1
## 2 72
## 3 224
## 4 266
## 5 349
## 6 363
## 7 435
## 8 506
## 9 588
## 10 661
## # ℹ 34,776 more rows
# To select multiple rows or columns, use vectors!
# To select the first three rows of the 5th and 6th column
surveys[c(1, 2, 3), c(5, 6)]
## # A tibble: 3 × 2
## plot_id species_id
## <dbl> <chr>
## 1 2 NL
## 2 2 NL
## 3 2 NL
# We can use the : operator to create those vectors for us:
surveys[1:3, 5:6]
## # A tibble: 3 × 2
## plot_id species_id
## <dbl> <chr>
## 1 2 NL
## 2 2 NL
## 3 2 NL
# This is equivalent to head_surveys <- head(surveys)
head_surveys <- surveys[1:6, ]
# As we've seen, when working with tibbles
# subsetting with single square brackets ("[]") always returns a data frame.
# If you want a vector, use double square brackets ("[[]]")
# For instance, to get the first column as a vector:
surveys[[1]]
## [1] 1 72 224 266 349 363 435 506 588 661 748 845
## [13] 990 1164 1261 1374 1453 1756 1818 1882 2133 2184 2406 2728
## [25] 3000 3002 4667 4859 5048 5180 5299 5485 5558 5583 5966 6020
## [37] 6023 6036 6167 6479 6500 8022 8263 8387 8394 8407 8514 8543
## [49] 8657 8675 8755 9048 9132 9270 9349 9512 9605 9703 10606 10617
## [61] 10627 10720 10923 10949 11215 11329 11496 11498 11611 11628 11709 11877
## [73] 11879 11887 11953 12299 12458 12602 12678 12708 12729 12756 12871 12997
## [85] 13025 13114 13275 13326 13434 13465 13476 13615 13630 13748 13977 14646
## [97] 14740 14796 14804 14896 14984 15302 15780 16407 17230 17877 17941 18110
## [109] 18364 18486 18639 18678 18680 18846 18948 19032 19245 20040 20089 20364
## [121] 20466 20992 21113 21120 21161 21232 21235 21286 21507 21558 22314 22728
## [133] 22899 23032 24589 24690 24703 25247 25701 26028 26644 26827 26857 27042
## [145] 27326 27734 27781 27860 27897 27919 28022 28077 28328 28551 28556 28662
## [157] 28928 29039 29310 29435 29572 29823 29865 29950 30066 30067 30172 30174
## [169] 30175 30307 30308 30309 30443 30741 31516 31517 31633 31717 31721 31862
## [181] 31946 32045 32167 32391 32817 33040 33041 33237 33238 33339 33415 33583
## [193] 33586 33837 33847 33966 34198 34783 34991 35212 35404 3 226 233
## [205] 245 251 257 259 268 346 350 354 361 422 424 427
## [217] 438 449 507 511 518 519 521 522 523 527 533 593
## [229] 595 600 601 660 664 733 754 757 764 838 842 849
## [241] 914 924 930 1018 1061 1062 1159 1183 1269 1272 1277 1370
## [253] 1382 1461 1469 1519 1529 1534 1535 1539 1581 1611 1644 1661
## [265] 1676 1692 1701 1768 1839 1845 1846 2014 2060 2070 2122 2131
## [277] 2176 2181 2338 2339 2340 2372 2400 2456 2460 2525 2555 2589
## [289] 2600 2622 2631 2635 2643 2653 2662 2667 2692 2695 2701 2715
## [301] 2740 2790 2814 2901 2902 2906 2975 2981 3033 3035 3099 3107
## [313] 3182 3236 3302 3388 3454 3456 3525 3547 3550 3564 3566 3569
## [325] 3580 3738 3741 3781 3790 3867 3877 3889 3897 3899 3901 3947
## [337] 3960 3979 3998 4004 4198 4238 4243 4251 4268 4271 4276 4306
## [349] 4317 4320 4341 4347 4452 4482 4520 4548 4685 4693 4714 4952
## [361] 5044 5063 5167 5288 5483 6006 6184 6470 6474 6491 6520 6523
## [373] 6528 6549 6553 6824 6832 6837 6842 6889 6939 6944 6945 7061
## [385] 7080 7246 7294 7402 7420 7553 7558 7715 7723 7735 7884 7895
## [397] 7916 8125 8235 8339 8359 8413 8494 8631 8656 8800 8903 8954
## [409] 8961 9034 9133 9156 9180 9182 9269 9452 9572 9672 9762 9767
## [421] 9873 9880 9894 9901 9920 9980 9984 10001 10004 10006 10021 10031
## [433] 10092 10109 10114 10254 10277 10290 10318 10354 10363 10366 10411 10415
## [445] 10421 10430 10447 10500 10517 10518 10532 10595 10600 10603 10610 10621
## [457] 10623 10686 10693 10716 10784 10802 10804 10899 10909 10920 11013 11015
## [469] 11063 11074 11092 11148 11150 11161 11186 11187 11197 11210 11284 11291
## [481] 11304 11305 11316 11327 11387 11388 11391 11408 11421 11489 11514 11515
## [493] 11535 11584 11595 11600 11608 11684 11695 11722 11772 11784 11788 11791
## [505] 11841 11862 11920 12011 12014 12056 12117 12137 12138 12234 12249 12389
## [517] 12394 12407 12419 12439 12533 12535 12545 12676 12764 12780 12966 12972
## [529] 13112 13145 13167 13267 13481 13589 13757 13820 13822 13920 13922 13935
## [541] 14098 14104 14119 14123 14134 14258 14279 14322 14423 14491 14540 14603
## [553] 14697 14787 14794 14797 14889 14988 16292 16377 17298 17320 17331 17910
## [565] 17915 17973 18096 18193 18201 18654 18743 18821 19378 19427 19539 19806
## [577] 19866 20856 21167 21215 21223 21269 21275 21284 21325 21385 21435 21442
## [589] 21448 21502 21505 21555 21560 21708 21757 21814 21879 21940 22003 22042
## [601] 22044 22105 22109 22168 22250 22368 22375 22444 22550 22560 22689 22842
## [613] 22853 22865 22880 22896 22997 23002 23003 23041 23044 23115 23117 23120
## [625] 23136 23144 23156 23169 23220 23225 23234 23237 23243 23257 23341 23345
## [637] 23357 23365 23368 23403 23498 23519 23522 23549 23565 23645 23650 23687
## [649] 23703 23895 23899 23902 23904 23922 23929 23936 24027 24045 24197 24292
## [661] 24306 24393 24396 24407 24443 24537 24546 24549 24553 24681 24682 24694
## [673] 24822 24844 24939 24947 25014 25164 25175 25181 25183 25193 25197 25211
## [685] 25214 25217 25422 25446 25720 25944 26259 26567 26773 27005 27212 27240
## [697] 27293 27444 27458 27559 27567 27686 27701 27702 27704 27715 27747 27753
## [709] 27776 27778 27862 27884 27896 27909 28019 28065 28067 28177 28184 28323
## [721] 28550 28554 28561 28660 28663 28798 28799 28921 28926 29036 29037 29168
## [733] 29308 29311 29431 29434 29577 29704 31215 31386 31515 31632 31718 31792
## [745] 31858 31859 31860 31861 31945 31948 32380 32386 32601 32604 32605 32607
## [757] 32822 32827 32828 33027 33035 33232 33234 33329 33336 33410 33579 33580
## [769] 33581 33842 33844 33958 34192 34428 34672 34985 34987 35210 35397 69
## [781] 432 532 590 650 652 833 995 1351 2051 2167 2536 2883
## [793] 2900 4283 6457 6518 7040 7784 21031 23912 7 238 279 517
## [805] 604 671 673 1283 1301 1467 1603 2457 2530 5071 5074 5076
## [817] 5178 5184 5192 5196 5301 5321 5322 5484 5487 5490 5493 5544
## [829] 5562 6215 6496 7087 7311 7417 7440 7578 7742 9561 9777 9780
## [841] 9999 10018 11083 11084 11207 11315 11948 12280 12288 12459 12589 12731
## [853] 13010 13103 13148 13309 13332 13463 13611 13780 13787 13791 13831 13960
## [865] 13963 13986 13992 14183 14301 14428 14430 14516 14624 14630 14820 14822
## [877] 14841 15106 15130 15132 15136 15267 15431 15750 15772 15853 16498 16693
## [889] 16709 16816 16847 16955 17085 19041 19394 19426 19429 19562 19580 19657
## [901] 19661 19671 19673 19800 19818 19895 20354 20607 23258 23260 23379 23393
## [913] 23396 23399 23504 23547 23583 23598 23658 23716 23729 23944 23945 24711
## [925] 24714 24992 25277 25280 25494 26022 27214 29035 31520 32815 33032 33036
## [937] 33228 33231 33331 33411 33953 33963 34194 34426 35201 35209 220 247
## [949] 585 657 731 749 835 912 934 993 1151 1266 1365 1673
## [961] 1922 3008 3009 3010 3034 3083 3380 3457 3505 3546 3778 3869
## [973] 3875 3958 3973 3976 3977 3980 4190 4203 4216 4221 4225 4230
## [985] 4233 4248 4299 4334 4447 4449 4514 4517 4648 4858 4948 5013
## [997] 5027 5164 5173 5270 5282 5467 5471 5472 5474 5514 5523 5532
## [1009] 5767 5775 5777 5921 5934 6176 6435 6532 6788 6827 6836 6865
## [1021] 6868 6891 6916 7046 7260 7378 7564 7600 7730 7891 8001 8224
## [1033] 8241 8347 8355 8373 8479 8499 8511 8515 8627 8654 8883 9892
## [1045] 10294 10441 10503 10604 11858 11923 12020 12123 12251 12404 12557 12688
## [1057] 12790 12981 13123 13420 13587 14409 26304 26571 26792 26980 27163 27306
## [1069] 27426 27553 28013 28166 28552 28658 28800 28927 29038 29167 29313 29433
## [1081] 29436 29573 29706 18 933 1294 1898 6148 8405 13472 13475 13576
## [1093] 16400 16729 17870 18646 18848 18920 19038 19102 19947 19950 19965 20041
## [1105] 20243 21510 21723 21726 21764 21810 22381 22440 22441 22446 22449 22464
## [1117] 22542 22546 22557 22663 22669 22672 22673 22682 22691 22692 22696 22727
## [1129] 22831 22836 22851 22878 22886 22910 23028 23353 23501 23594 23676 23892
## [1141] 23913 24039 24048 24172 24185 24217 24307 24318 24418 24435 25430 25453
## [1153] 25474 25477 25480 25522 25529 25695 25727 25753 25779 25977 25991 25994
## [1165] 26446 26476 26576 26586 26627 26789 27690 27725 27763 27768 27875 27894
## [1177] 28030 28054 28069 28193 28228 28324 28327 28329 28553 28559 28562 29437
## [1189] 29574 29576 29702 29822 29862 29863 29947 29948 29949 30064 30069 30170
## [1201] 30301 30302 30304 30306 30431 30432 30434 30439 30608 30609 30733 30740
## [1213] 30913 30915 31106 31107 31108 31204 31207 31208 31209 31211 31214 31387
## [1225] 31389 31944 31947 32162 32163 32164 32378 32379 32381 32387 32388 32599
## [1237] 32606 32608 32609 32819 32824 32830 33034 33226 33412 33578 33584 33843
## [1249] 33845 33846 33957 33959 33965 34193 34197 34423 34425 34430 34432 34433
## [1261] 34434 34673 34773 34774 34781 34984 34988 35202 35401 35408 16298 16513
## [1273] 16699 17327 26608 26640 30738 31111 32044 32165 32816 33029 33413 33839
## [1285] 34990 355 431 446 452 534 598 603 663 670 732 918
## [1297] 1472 1541 1584 1594 1924 2003 2011 2050 2054 2392 3232 3311
## [1309] 3528 3587 3740 4315 4956 4958 5018 5020 5305 6162 6562 6809
## [1321] 6928 7058 7270 8127 8148 8372 8490 8506 8650 8670 9544 9789
## [1333] 10827 10946 10953 10956 13484 13607 13637 14288 14416 14521 14736 14903
## [1345] 15099 15134 15646 16411 16704 16708 16849 16961 17545 17918 17997 18000
## [1357] 18094 18117 18228 18232 18343 18347 18375 18468 18733 18839 18909 18911
## [1369] 19017 19019 19040 19124 19136 19223 19238 19251 19436 19439 19576 19639
## [1381] 20014 20020 20024 20036 20205 20462 20728 21340 21400 21492 21494 21577
## [1393] 22566 22719 23038 23151 23164 24176 24413 24426 24705 24806 24825 24981
## [1405] 25206 25233 25261 25486 25761 25839 25973 26015 26341 26507 26565 26604
## [1417] 26613 26808 26842 27192 27221 27323 27343 27438 27461 27727 27780 28555
## [1429] 28557 28656 28659 28664 28666 28803 28923 28924 28925 29030 29031 29034
## [1441] 30912 31213 31384 31388 31519 31521 31627 31628 31630 31715 32383 32384
## [1453] 32385 32389 32390 32598 32602 32818 32820 32821 32823 32829 33028 33033
## [1465] 33227 33229 33326 33327 33328 33332 33333 33334 33585 33838 33840 33952
## [1477] 34983 35204 35395 2384 2458 2459 2562 2606 2615 3453 3455 3739
## [1489] 3797 3885 3902 4193 4257 4287 4318 5177 5475 5585 5814 5954
## [1501] 6047 6201 6508 6592 6867 6905 6912 7116 7119 7263 7281 7407
## [1513] 7414 7566 8522 8887 9152 9164 9514 9590 9682 9694 9754 9785
## [1525] 9907 9913 10094 10102 10123 10308 10357 10445 10515 10528 10599 10615
## [1537] 10695 10706 10951 11209 11308 11622 12051 12063 12066 12146 12275 12433
## [1549] 12446 12543 12606 12702 12707 12789 12854 13007 13018 13164 13171 13291
## [1561] 13325 13431 13455 13617 13623 13768 13810 13997 14000 14155 14160 14190
## [1573] 14309 14336 14433 14441 14513 14515 14636 14713 14739 14803 14835 14901
## [1585] 14906 14990 15119 15142 15254 15279 15294 15448 15482 15641 15644 15734
## [1597] 15755 15764 15873 16015 16023 16168 16182 16286 16311 16374 16384 16412
## [1609] 16468 16472 16495 16510 16664 16712 16827 16845 16960 16965 17052 17070
## [1621] 17076 17178 17205 17323 17334 17345 17415 17418 17518 17527 17622 17624
## [1633] 17700 17774 17850 17857 17876 17921 17928 17933 17981 17992 18004 18009
## [1645] 18068 18086 18090 18103 18218 18219 18225 18247 18361 18452 18460 18470
## [1657] 18619 18637 18663 18669 18738 18764 18838 18943 19013 19024 19107 19130
## [1669] 19205 19212 19391 19431 19446 19545 19552 19565 19640 19647 19659 19757
## [1681] 19759 19786 19863 19867 19893 19944 19953 19964 20033 20095 20109 20110
## [1693] 20182 20186 20201 20248 20257 20269 20334 20352 20431 20468 20706 20778
## [1705] 20909 20970 21097 21236 21294 21617 21678 21828 21833 21884 21901 21944
## [1717] 21957 21958 21995 22001 22008 22049 22062 22069 22120 22169 22235 22469
## [1729] 23223 23242 23388 24867 24983 25159 25257 25281 25285 25462 25734 25813
## [1741] 26007 26034 26322 26460 26561 26633 26798 26834 26973 27168 27200 27245
## [1753] 27321 27434 27467 27555 28325 28558 28661 28801 28802 28922 29029 29032
## [1765] 29033 29169 29312 29432 29438 29570 29703 30171 30173 30303 30305 30442
## [1777] 30612 30739 33030 33230 33233 33330 33335 33406 33407 33582 33587 33835
## [1789] 33836 33960 33961 34431 242 587 2877 8345 9424 9571 10418 16163
## [1801] 16530 274 366 441 513 1543 1544 1573 1597 1646 2163 2178
## [1813] 2183 2375 2383 2391 2531 2532 2627 2649 2818 2978 3799 3804
## [1825] 3893 4311 5187 5292 5510 6152 6519 9276 9990 10091 10108 10911
## [1837] 10945 11091 12161 12311 12420 12447 12464 12571 12738 12960 12969 13316
## [1849] 13962 13984 14163 15114 15389 15662 15733 15778 15897 18623 18630 18744
## [1861] 19215 19411 19658 20370 20444 21208 22108 25468 34779 2518 2646 5190
## [1873] 5477 5489 5502 5564 5566 7583 7761 9159 13799 13968 14294 15237
## [1885] 15275 15434 15592 15598 15631 15746 15761 15775 15785 15894 17420 18099
## [1897] 18216 18339 18366 18474 18476 18491 18750 19450 19579 19666 19676 19677
## [1909] 19790 19793 19957 20601 20602 20653 20719 21619 23167 23381 23407 23558
## [1921] 23592 23680 24838 24847 24980 25011 25222 25547 25833 26853 27260 27272
## [1933] 27330 29170 29307 30065 30435 31518 31716 33405 6466 9157 9354 1653
## [1945] 1670 7788 10007 12040 12044 12061 12142 12150 12454 12577 12596 12604
## [1957] 12672 12785 12826 13142 23146 23371 24861 24955 24960 25437 25442 25515
## [1969] 25751 25769 25788 25998 27031 28654 29171 29172 29306 29309 29569 11157
## [1981] 13917 13928 14101 14528 14592 15419 18664 19239 19547 20446 5302 5310
## [1993] 5488 5496 7303 7594 7611 7614 9416 12246 13321 14158 16981 21160
## [2005] 3306 9325 16382 13644 13828 19952 19121 35402 19217 19655 19961 20267
## [2017] 21053 21226 25790 25820 23239 24052 24216 24423 24440 24452 24571 24579
## [2029] 24595 24692 24717 24794 24845 24850 24921 24995 24999 25007 25020 25194
## [2041] 25265 25271 25490 25815 26012 26020 26024 26333 26351 26465 26488 26590
## [2053] 26796 26860 26863 26869 26995 27018 27034 27053 27209 27256 27280 27291
## [2065] 27347 27474 27580 27582 27589 27733 28326 28330 28560 28655 28657 28665
## [2077] 28804 29571 29575 29705 29864 29946 30068 30070 30169 30176 30297 30298
## [2089] 30299 30300 30433 30436 30437 30438 30440 30441 30607 30610 30611 30731
## [2101] 30732 30734 30735 30736 30737 30910 30911 30914 30916 30917 30918 30919
## [2113] 30920 31104 31105 31109 31110 31205 31206 31210 31212 31216 31381 31382
## [2125] 31383 31385 31390 31513 31514 31626 31629 31631 31719 31720 31793 31857
## [2137] 32166 32382 32600 32603 32825 32826 33031 33037 33038 33039 33235 33236
## [2149] 33337 33338 33404 33408 33409 33414 33588 33834 33841 33954 33955 33956
## [2161] 33962 33964 34195 34196 34424 34427 34429 34775 34776 34777 34778 34780
## [2173] 34782 34982 34986 34989 35203 35205 35206 35207 35208 35211 35394 35396
## [2185] 35398 35399 35400 35403 35405 35406 35407 2 344 509 655 755
## [2197] 886 1083 1087 1250 1361 3089 3216 4940 5036 5163 5389 5403
## [2209] 5612 5783 5938 5981 7057 7896 8002 8480 8857 8870 9031 9122
## [2221] 9428 9497 9573 9991 10085 10282 10691 10780 11014 11151 11174 11302
## [2233] 11395 11398 11500 11586 11592 11848 12120 12390 12550 12673 12739 12742
## [2245] 13146 13429 13435 13567 13734 13769 13940 14284 15239 15412 15589 15802
## [2257] 15845 16060 16462 16835 18780 18876 18975 19263 19500 19593 19681 20051
## [2269] 20054 20055 20743 20746 20806 20808 20865 20940 21129 21180 21184 21247
## [2281] 21299 21345 21406 21408 21462 21527 21735 30501 5 13 63 221
## [2293] 303 315 1279 2341 2462 3013 3458 3460 3744 3745 3961 3967
## [2305] 6667 6779 7267 7278 7280 7289 7299 7315 7624 7892 8532 8673
## [2317] 8894 9135 9161 9577 9601 9904 9987 10095 10351 10356 10437 10523
## [2329] 10578 10584 10624 10709 10779 10895 10905 10952 13771 13976 14171 14269
## [2341] 14300 18034 18185 18188 18291 18421 18431 18558 18560 18620 18648 18694
## [2353] 18715 18798 21124 21126 21127 22082 22140 22207 22418 23174 24165 24757
## [2365] 24900 25095 25117 25154 25386 25400 25659 25917 26023 26502 27649 29239
## [2377] 33117 33129 33417 33419 33423 33424 33426 33435 33646 33652 33848 33849
## [2389] 34050 34060 34067 34068 34290 34297 34533 498 520 672 1275 1366
## [2401] 1380 2061 2117 2164 2179 2393 2503 2506 2533 2548 2583 2595
## [2413] 2636 2800 2810 2881 2990 3222 3228 3298 3323 3382 3506 3538
## [2425] 3558 3982 4002 4024 4052 4175 4455 4686 5021 5165 5280 5300
## [2437] 5397 5435 5650 5915 5988 6030 6177 6183 6195 6205 6458 6462
## [2449] 6485 6577 6700 6754 6772 7084 7124 7275 7421 7549 7599 7603
## [2461] 7718 7736 7751 7767 7769 7789 7906 7909 8007 8013 8025 8037
## [2473] 8102 8128 8230 8257 17053 17179 17311 17346 17452 17567 17613 17623
## [2485] 17637 17726 17781 17793 17797 18044 18139 18721 19053 19171 19281 19497
## [2497] 19977 20143 22752 23283 23291 23294 23616 23790 23804 23818 23862 23978
## [2509] 24105 24123 24624 24769 25632 25959 26010 26310 26516 26763 32483 32896
## [2521] 33123 33429 33647 34057 2140 2148 3986 5269 5386 5918 6157 6432
## [2533] 6537 7367 7716 9421 9864 9883 10087 10097 11164 11337 13582 13592
## [2545] 13751 13817 13834 13918 13934 14124 14141 14410 14413 14439 14596 14933
## [2557] 15025 15407 15606 15619 15809 15814 15842 16063 17187 17349 19071 19262
## [2569] 19475 19594 19679 19692 19797 23267 23412 23419 23604 23735 23773 24126
## [2581] 24721 25306 25314 25599 31560 31564 32895 33121 33428 35490 17 73
## [2593] 241 2461 2463 2464 3011 3012 3014 3015 3016 3017 3742 3743
## [2605] 3952 3964 3970 6150 217 1257 1352 6155 6434 6443 6524 8135
## [2617] 8216 8350 8645 9024 9245 9249 9278 9327 9357 9443 10259 10315
## [2629] 10412 10433 10495 10510 10512 10580 10591 10616 10681 10712 10726 10822
## [2641] 10828 11016 11204 11285 11423 11433 11512 11587 11590 11601 11623 11712
## [2653] 11727 11728 11773 11780 11785 11850 11865 11881 12693 12711 12716 12840
## [2665] 12963 12974 13026 13115 13163 13173 13179 13272 13280 13306 13317 13339
## [2677] 13416 13421 13485 14267 14412 14449 14490 14511 14526 14601 14604 14650
## [2689] 14716 14732 14792 14808 14821 14824 14827 14838 14850 14888 14982 15841
## [2701] 15866 15868 16303 16367 16388 16464 16482 16524 16707 16720 17439 17561
## [2713] 17644 17699 17771 17848 17942 18601 18685 18723 18725 18783 18899 18901
## [2725] 18965 18969 19001 19009 19050 19057 19147 19148 19177 19178 19276 19596
## [2737] 19695 19701 19763 19810 19930 19932 20001 20077 20117 20147 20216 20223
## [2749] 20224 20232 20235 20291 20299 20303 20307 20324 20378 20385 20477 20819
## [2761] 20867 20931 20936 20943 20956 21004 21065 21128 21133 21205 21526 21583
## [2773] 21642 21648 21683 21684 21732 21733 21742 21781 21784 21795 21845 21847
## [2785] 21859 22194 22255 22257 22320 22343 22393 22401 22408 22428 22500 22517
## [2797] 22521 22523 22524 22534 22585 22587 22592 22598 22604 22617 22622 22627
## [2809] 22633 22636 22641 22643 22648 22651 22658 22738 22743 22746 22749 22755
## [2821] 22757 22766 22774 22778 22786 22796 22804 22807 22814 22823 22920 22926
## [2833] 22943 22957 22959 22964 22965 22974 22979 22987 22988 23054 23081 23083
## [2845] 23091 23204 23206 23287 23410 23442 23475 23623 23625 23634 23732 23741
## [2857] 23746 23748 23768 23787 23791 23812 23839 23864 23877 23951 23967 23974
## [2869] 24087 24116 24118 24119 24142 24233 24245 24246 24274 24276 24330 24336
## [2881] 24347 24351 24360 24362 24364 24368 24466 24492 24494 24505 24515 24605
## [2893] 24627 24645 24740 25296 25327 25576 25608 25629 25648 25674 25676 25884
## [2905] 25890 25903 25953 26001 26248 26300 26323 26449 26484 26674 26715 26733
## [2917] 26758 27814 27828 27843 27989 27994 27997 28095 28103 28258 28300 28309
## [2929] 28406 28409 28414 28564 29498 29631 29634 30000 30001 30112 30225 30359
## [2941] 30809 30993 30997 31276 32256 32264 32266 32478 32479 32480 32481 32695
## [2953] 32696 32702 32902 33130 33850 33858 33860 33862 34052 34053 34058 34059
## [2965] 34064 34291 34292 34294 34298 34536 34539 34540 34541 34544 34547 34735
## [2977] 34736 34737 34876 34877 35112 13255 14097 14263 14406 14488 15088 15234
## [2989] 15384 15568 15787 15790 15834 15839 15912 16045 16050 16088 16158 16164
## [3001] 16167 16275 16308 16358 16471 16473 16532 16929 17170 17172 17300 17359
## [3013] 17430 17551 478 584 599 658 668 1009 1256 1286 1533 1542
## [3025] 1585 1645 1650 1997 3459 3461 3974 3975 5969 8236 9044 9350
## [3037] 9751 9765 10438 10690 11424 11521 11533 11625 11724 13124 13418 13571
## [3049] 13753 13993 14103 14286 14590 15011 15014 15161 15251 15424 15442 15467
## [3061] 15638 15663 15801 16280 16370 16493 16502 16520 16672 16803 16941 17064
## [3073] 17173 17184 17322 17432 18015 18021 18055 18120 18123 18135 18277 18391
## [3085] 18430 18542 18700 18702 18719 18857 19159 19182 19278 19483 19486 19688
## [3097] 20153 20388 20518 21416 22913 22915 23823 24498 24506 24600 24608 24628
## [3109] 24636 24747 24752 24782 25075 25093 25344 25558 25847 25886 25941 25969
## [3121] 26006 26239 27071 27125 27234 27934 27935 28000 28736 28741 28868 28870
## [3133] 29094 29235 29237 29372 29903 30220 30363 30506 30803 30990 31274 31445
## [3145] 31556 31671 31754 31755 32088 32089 32263 32486 32693 32694 32707 32893
## [3157] 32898 32899 32901 33119 33120 33122 33420 33432 33863 34535 34538 35495
## [3169] 292 294 6147 23051 23173 23196 23265 23273 23333 23426 23428 23438
## [3181] 23471 23626 23750 23762 23770 23828 23832 23955 23963 24010 24097 24138
## [3193] 24236 24238 24272 24334 24611 24744 24779 24879 24884 25036 25038 25077
## [3205] 25106 25110 25289 25318 25385 25571 25617 25639 25845 25881 25897 25939
## [3217] 25945 25981 25985 26260 26415 26663 26760 26919 26928 27092 27111 27145
## [3229] 27267 27368 27380 27525 27541 27640 29500 32704 32907 33131 33425 33431
## [3241] 33434 33644 33650 33851 33857 33859 34049 34063 34065 34066 34288 70
## [3253] 1281 7999 9437 11863 14420 14890 14892 14897 14930 15822 16299 23738
## [3265] 24764 25398 26447 26767 28411 504 1880 1950 1952 2044 2045 2112
## [3277] 2114 2373 5275 5638 6144 6717 7998 8115 8130 8138 8222 8340
## [3289] 8342 8545 8950 8951 9145 9147 9243 9257 9284 9336 9343 9429
## [3301] 9612 9680 9699 9704 9706 9712 10255 10936 11075 11078 11615 11843
## [3313] 11860 11949 11958 13186 15098 15143 15146 15148 18605 18692 19466 19469
## [3325] 20145 20292 20611 20675 23087 23433 23816 34872 2135 2150 2512 2513
## [3337] 2537 2573 2793 2797 2872 2890 5031 5061 5160 5162 5182 5188
## [3349] 5295 5307 5409 5417 5424 5433 5439 5447 5448 5454 5641 5644
## [3361] 5676 5985 6012 6446 6480 7078 7092 7239 7247 8628 8664 8803
## [3373] 8853 8876 8879 9915 10000 10419 11042 11065 11216 11299 11309 11490
## [3385] 12118 12167 12263 12406 12408 12422 12436 12546 12700 12773 12978 12984
## [3397] 12991 13136 13333 13605 13641 13738 13761 13808 13929 13946 13969 14129
## [3409] 14140 14150 14151 14277 14445 14447 14508 14608 14612 15093 15116 15139
## [3421] 15222 15286 15399 15417 15427 15472 15478 15585 15629 15653 15666 15810
## [3433] 15825 15826 15827 15865 15875 15910 16047 16053 16064 16067 16070 16159
## [3445] 16178 16180 16199 16279 16317 16318 16379 16387 16392 16662 16668 16685
## [3457] 16706 16811 16823 16833 16838 16863 16950 17059 17071 17097 17195 17223
## [3469] 17238 17302 17344 17447 17463 17464 17469 17480 17556 17573 17631 17702
## [3481] 17791 17916 18027 18053 18140 18152 18169 18272 18411 18502 18507 18864
## [3493] 19291 19298 19480 19491 19493 19495 19586 19702 19765 19808 19812 20053
## [3505] 20150 20508 20513 20563 20623 20670 20676 20741 20742 20810 21075 21136
## [3517] 21144 21201 21301 21363 21456 21459 21522 21524 21695 21699 21788 21843
## [3529] 21980 22331 22760 23075 23191 23758 23776 24725 25055 25877 27180 29093
## [3541] 9143 9259 9266 27622 27629 5174 8677 10101 10306 12027 12035 12121
## [3553] 12162 12247 12268 12304 12308 12312 12315 12429 12452 12677 12714 12717
## [3565] 12751 13180 13447 13577 13618 13765 14175 14189 14264 14280 14326 14341
## [3577] 23195 24742 25032 25566 25655 25663 28734 29375 33436 10498 26751 5821
## [3589] 7441 8750 9370 12405 13328 14122 14298 16846 16967 28735 3317 3319
## [3601] 3320 9364 5764 14610 15138 16519 25594 8780 17199 9576 9688 16854
## [3613] 17486 17566 17616 17773 17935 18132 18252 18509 18604 18687 18778 18855
## [3625] 19144 19256 19274 19499 19514 19698 20079 20564 20688 19270 19283 19284
## [3637] 19309 19461 19472 19633 19699 19732 19733 19783 19827 19903 19972 19978
## [3649] 20047 20471 20817 20869 21006 21353 21360 20408 32708 32904 34295 24480
## [3661] 24621 24737 24886 25085 25309 25335 25854 25893 25949 25965 25983 26003
## [3673] 26305 26358 26418 26423 26477 26705 26891 26893 26913 26926 27082 27105
## [3685] 27197 27210 27278 27375 27496 27626 27668 27820 27976 27993 28005 28092
## [3697] 28120 28134 28141 28153 28157 28162 28247 28251 28259 28264 28292 28305
## [3709] 28311 28405 28407 28408 28410 28412 28413 28415 28416 28417 28563 28565
## [3721] 28566 28567 28568 28569 28570 28571 28572 28573 28737 28738 28739 28740
## [3733] 28742 28743 28744 28864 28865 28866 28867 28869 28871 28872 28974 28975
## [3745] 28976 28977 28978 28979 29091 29092 29095 29096 29097 29232 29233 29234
## [3757] 29236 29238 29370 29371 29373 29374 29492 29493 29494 29495 29496 29497
## [3769] 29499 29501 29502 29503 29627 29628 29629 29630 29632 29633 29635 29636
## [3781] 29768 29769 29770 29771 29772 29773 29774 29775 29838 29839 29900 29901
## [3793] 29902 29996 29997 29998 29999 30111 30113 30114 30115 30116 30221 30222
## [3805] 30223 30224 30226 30358 30360 30361 30362 30364 30502 30503 30504 30505
## [3817] 30716 30717 30718 30719 30804 30805 30806 30807 30808 30810 30811 30812
## [3829] 30813 30814 30815 30988 30989 30991 30992 30994 30995 30996 30998 31159
## [3841] 31160 31161 31162 31163 31164 31165 31166 31178 31179 31273 31275 31277
## [3853] 31278 31279 31280 31443 31444 31446 31447 31448 31557 31558 31559 31561
## [3865] 31562 31563 31667 31668 31669 31670 31672 31751 31752 31753 31756 31888
## [3877] 31889 31890 31991 31992 32090 32254 32255 32257 32258 32259 32260 32261
## [3889] 32262 32265 32482 32484 32485 32487 32488 32489 32697 32698 32699 32700
## [3901] 32701 32703 32705 32706 32894 32897 32900 32903 32905 32906 32908 32909
## [3913] 33115 33116 33118 33124 33125 33126 33127 33128 33416 33418 33421 33422
## [3925] 33427 33430 33433 33642 33643 33645 33648 33649 33651 33653 33852 33853
## [3937] 33854 33855 33856 33861 34048 34051 34054 34055 34056 34061 34062 34289
## [3949] 34293 34296 34299 34532 34534 34537 34542 34543 34545 34546 34733 34734
## [3961] 34867 34868 34869 34870 34871 34873 34874 34875 34878 34879 35102 35103
## [3973] 35104 35105 35106 35107 35108 35109 35110 35111 35113 35285 35286 35287
## [3985] 35288 35289 35290 35291 35292 35293 35294 35295 35491 35492 35493 35494
## [3997] 26701 27386 24669 22 121 1168 4649 4692 5797 5920 5999 6044
## [4009] 6476 6488 6756 8033 8144 8265 8364 8456 8668 8778 8869 9027
## [4021] 9254 9255 9344 9360 9442 9506 13424 13815 13944 14112 14493 14640
## [4033] 14698 14702 14795 14807 15391 15591 17317 26695 27374 27624 27810 28116
## [4045] 28257 28630 32356 26 27 31 114 128 133 135 143 225
## [4057] 227 230 316 635 641 643 712 714 716 724 729 827
## [4069] 900 2220 2221 2222 2356 2357 2358 2491 2492 2493 2642 2813
## [4081] 3489 3490 3491 3615 3616 4421 4425 4427 4436 4443 6722 9197
## [4093] 10016 10111 11732 15640 22218 23078 23270 23337 23339 23480 23486 23488
## [4105] 23635 23806 23965 24243 24338 24474 34395 34654 34699 34926 34936 1265
## [4117] 1386 2147 2380 2405 2516 2576 2789 2807 2870 2899 2905 2966
## [4129] 2967 2989 3163 3175 3221 3294 3308 3313 3783 3866 4000 4202
## [4141] 4474 4527 4660 4799 5290 5398 5618 5781 5813 5924 5944 5990
## [4153] 6025 6028 6046 6245 6252 6257 6282 6431 6455 6507 6712 6999
## [4165] 7431 7551 7581 7593 7725 7746 7900 17318 17962 18058 18161 18253
## [4177] 20131 21017 21064 21130 21183 21248 21304 21364 21422 22742 22773 22787
## [4189] 22792 22946 22949 22963 23057 23063 23066 23178 23188 23280 23289 23448
## [4201] 23470 23477 23491 23745 23761 23786 23802 23822 23831 23847 23874 23880
## [4213] 23956 23961 23968 23971 23973 23984 23992 24093 24113 24161 24235 24463
## [4225] 24468 24478 24496 24641 24727 24768 25139 25146 25152 25379 25409 25573
## [4237] 25583 25622 25637 25647 25652 25673 25844 25858 25913 26161 26231 26273
## [4249] 26687 26700 26709 26881 26884 28126 28128 32029 32148 4848 4971 4985
## [4261] 5080 5085 5090 5273 5294 5404 5406 5793 5916 5943 5956 5962
## [4273] 5963 6019 6035 6974 7729 7882 9052 9439 12770 12778 12816 13287
## [4285] 13310 13443 13586 13744 13819 14125 14287 14330 14498 14701 14910 15092
## [4297] 15285 16052 16066 16068 16174 16177 16183 16277 16363 16554 16676 16810
## [4309] 16815 16826 16937 17068 17861 18017 18054 18716 18795 18881 18954 19078
## [4321] 19086 19323 27831 34937 35374 144 231 4433 4439 6783 1076 1078
## [4333] 1181 1264 1368 1757 1823 1842 1884 1895 1946 1948 1953 1954
## [4345] 1988 2047 2127 8400 8967 9043 9046 18891 19010 19914 20158 20164
## [4357] 20961 21086 21125 21193 21744 21786 21793 22640 22816 22822 22827 23835
## [4369] 23869 23879 23998 24001 24007 24132 24150 24239 24265 24361 24483 24527
## [4381] 24623 24649 25628 25640 25643 25653 25681 25849 25875 25910 25930 26166
## [4393] 26181 26206 26215 26226 26242 26285 26286 26291 26326 26481 26511 26520
## [4405] 26673 26681 26712 26730 26766 27804 27846 27966 27968 28113 28139 28245
## [4417] 28273 28471 28474 28631 28633 29681 29682 29683 29684 29685 29686 29688
## [4429] 29811 29851 29853 29854 29933 29934 29935 29936 30051 30052 30053 30152
## [4441] 30153 30154 30276 30278 30279 30415 30416 30417 30569 30570 30571 30572
## [4453] 30573 30574 30575 30671 30672 30673 30674 30883 30884 30885 30886 30888
## [4465] 30889 31079 31080 31081 31082 31083 31084 31086 31087 31359 31360 31362
## [4477] 31363 31364 31365 31496 31497 31606 31848 31928 31929 32027 32028 32030
## [4489] 32031 32145 32147 32347 32349 32350 32351 32353 32354 32357 32580 32581
## [4501] 32582 32584 32789 32791 32793 33006 33007 33012 33726 33727 33904 33905
## [4513] 33909 33910 33911 34165 34168 34169 34170 34390 34393 34399 34400 34402
## [4525] 34648 34650 34651 34655 34660 34933 34938 14373 31085 33902 33908 34658
## [4537] 1762 1819 1822 2121 2146 2166 2407 2507 2508 2598 2710 2787
## [4549] 2817 2884 3095 3370 3377 3396 3398 5831 5994 6056 6229 6514
## [4561] 6613 6769 7230 7410 7913 8121 8390 8633 9030 9264 10331 11851
## [4573] 12965 13262 13273 14533 14915 16696 19341 22768 22790 22928 22967 24164
## [4585] 24519 24523 24607 24619 25334 25370 25631 25937 26210 26368 26492 27188
## [4597] 27226 27383 27986 30277 30567 30670 31361 31494 31495 31607 31706 31707
## [4609] 31786 31849 31930 32026 32795 32797 33008 33009 33010 33209 34700 35175
## [4621] 4651 5998 6018 6468 21149 30887 2973 3787 4512 4697 6671 6702
## [4633] 6746 7182 7404 7577 8031 8145 15156 15650 15660 15670 21982 21984
## [4645] 24170 2379 2523 2529 2825 5101 5103 5437 5440 5660 5807 6218
## [4657] 6998 7428 7570 7585 7632 7920 8863 9139 9871 9909 11077 11541
## [4669] 11542 12155 12292 12403 12450 12565 13113 13260 13277 13299 13628 13821
## [4681] 13950 14002 14166 14176 14185 14312 14315 14338 14374 14924 15298 15307
## [4693] 15452 15571 15634 15798 15799 15800 15832 15920 15941 15960 16065 16081
## [4705] 16197 16210 16312 16974 17088 17194 17196 17421 18045 18170 18260 18298
## [4717] 18385 18426 18544 18589 18593 19005 19329 19344 19512 19526 19621 19850
## [4729] 20416 20882 20937 21137 21250 21546 22017 22088 22153 22199 23060 23288
## [4741] 23458 23620 23633 23783 23852 24733 24872 25031 25067 25071 25091 25292
## [4753] 25391 25590 26261 28318 29146 29556 29687 33551 33554 33730 4477 5655
## [4765] 26439 1657 1765 4489 4540 5637 5774 5830 6002 6031 6236 6286
## [4777] 6483 6728 7215 8420 9033 9125 9155 9246 10090 10283 12159 12590
## [4789] 12743 12757 12765 12996 13159 13271 13632 15672 25413 25612 25883 26200
## [4801] 26203 26504 26692 26698 27107 27112 27114 27123 27159 27217 27363 27992
## [4813] 27996 27999 28145 28277 28472 29414 1446 8641 9583 9882 10509 10694
## [4825] 11040 11389 11507 11606 11789 11871 12028 12261 12278 12437 12809 12829
## [4837] 12832 12834 13144 13338 13438 13440 13444 13756 14512 15003 15624 16175
## [4849] 16184 16288 16564 16688 17416 17557 17813 17969 19489 19853 20057 20058
## [4861] 20876 21804 21913 22080 22083 22099 22222 22275 22342 22351 22423 22609
## [4873] 22771 22940 23093 23095 23808 23827 23854 24620 25880 25892 26183 27190
## [4885] 27956 27971 28106 28632 28788 28916 29018 29019 29145 29852 30568 31850
## [4897] 32146 32355 33005 33211 33552 33553 33903 34171 34173 34930 35545 35546
## [4909] 23184 9569 12260 12542 12575 12594 12600 13832 15263 15277 17092 17356
## [4921] 30418 4707 8014 8433 21253 13337 7029 12559 17219 18500 19350 22024
## [4933] 13313 18898 35539 25934 26192 26313 26411 26740 26897 26910 27089 28291
## [4945] 28473 28634 28789 28917 29413 29555 32144 32348 32352 32583 32585 32790
## [4957] 32792 32794 32796 33011 33013 33210 33212 33550 33555 33728 33729 33906
## [4969] 33907 33912 34166 34167 34172 34388 34389 34391 34392 34394 34396 34397
## [4981] 34398 34401 34649 34652 34653 34656 34657 34659 34698 34701 34702 34927
## [4993] 34928 34929 34931 34932 34934 34935 35173 35174 35176 35177 35178 35179
## [5005] 35180 35372 35373 35375 35376 35377 35378 35379 35380 35381 35538 35540
## [5017] 35541 35542 35543 27393 27481 27801 35544 38 214 495 971 1146
## [5029] 1993 2102 2191 2329 2362 4604 5740 5871 6118 6270 6281 6397
## [5041] 6633 7019 7200 7649 7990 8111 8323 8324 8732 9228 9407 9477
## [5053] 9558 9646 10538 10572 10673 10775 10883 11007 11135 11281 11367 11369
## [5065] 11581 11668 11762 11838 11914 12227 12483 12668 12846 12948 13093 13235
## [5077] 13557 13727 13899 14237 14398 14479 14777 14878 15087 15364 15762 15922
## [5089] 15938 16020 16033 16042 16231 16253 16446 16581 16642 16796 16916 17164
## [5101] 17281 17423 17547 17842 17948 18010 18119 18249 18579 18581 18673 18852
## [5113] 26063 26554 26648 26848 26985 27020 27932 28074 29071 32072 33075 33272
## [5125] 33452 33933 34012 34688 34796 34 118 123 142 187 189 202
## [5137] 209 287 288 290 318 320 380 382 399 462 481 482
## [5149] 496 538 539 556 608 610 627 680 707 785 788 792
## [5161] 807 888 891 894 905 910 941 947 966 975 1034 1041
## [5173] 1043 1052 1056 1112 1121 1123 1198 1215 1216 1226 1328 1332
## [5185] 1339 1408 1433 1485 1557 1559 1682 1785 1858 1877 1985 2017
## [5197] 2085 2149 2282 2298 2417 2550 2749 2828 2915 3044 3052 3124
## [5209] 3188 3255 3258 3406 3493 3494 3656 3659 3677 3680 3721 4027
## [5221] 4047 4055 4071 4169 4174 4372 4556 4603 4613 4616 4725 4765
## [5233] 4969 5332 5363 5610 5737 5839 6130 6238 6258 6356 6362 6381
## [5245] 6606 6611 6630 6657 6662 6676 6681 6701 6706 6713 6725 6747
## [5257] 6989 7011 7169 7177 7349 7475 7505 7680 7685 7830 7836 7934
## [5269] 8071 8078 8172 8179 8274 8275 8297 8318 8432 8437 8441 8446
## [5281] 8565 8595 8601 8713 8817 8936 8983 9063 9075 9087 9088 9108
## [5293] 9118 9225 9239 9290 9300 9316 9321 9378 9405 9468 9481 9524
## [5305] 9525 9533 9547 9620 9626 9632 9635 9722 9740 9847 9927 9965
## [5317] 10083 10137 10197 10370 10373 10457 10481 10545 10550 10638 10649 10732
## [5329] 10744 10750 10848 10852 10860 10966 10971 10978 11098 11110 11238 11344
## [5341] 11456 11457 11554 11637 11647 11736 11809 11903 11966 11984 12071 12339
## [5353] 12351 12474 12626 12754 12897 14657 16016 16091 16330 16348 16631 16780
## [5365] 16914 17414 17661 17755 17827 17908 17912 17925 17944 17972 17977 18007
## [5377] 18075 18081 18101 18205 18333 18456 18469 18569 18655 18667 18945 19069
## [5389] 19070 19099 19105 19259 19265 19374 19392 19558 19561 19683 19687 19722
## [5401] 19760 19776 19796 19803 19861 19864 19865 19868 19870 19873 19881 19882
## [5413] 19942 19945 19946 19966 20009 20010 20015 20021 20039 20090 20101 20113
## [5425] 20177 20189 20203 20256 20273 20338 20350 20359 20436 20453 20457 20469
## [5437] 20524 20528 20538 20540 20541 20582 20598 20600 20603 20604 20608 20635
## [5449] 20645 20651 20657 20658 20702 20703 20710 20717 20730 20732 20842 20854
## [5461] 20901 20927 20972 20985 20998 21040 21041 21048 21110 21111 21165 21168
## [5473] 21222 21234 21281 21343 21349 21351 21384 21386 21387 21388 21393 21394
## [5485] 21399 21437 21439 21443 21497 21500 21508 21563 21567 21569 21614 21615
## [5497] 21618 21626 21659 21660 21664 21707 21710 21719 21756 21766 21770 21813
## [5509] 21829 21832 21836 21878 21888 21898 21945 21948 21961 22020 22022 22043
## [5521] 22065 22114 22116 22118 22171 22178 22184 22185 22187 22189 22231 22242
## [5533] 22245 22300 22302 22311 22366 22372 22377 22380 22382 22437 22442 22458
## [5545] 22470 22472 22545 22559 22569 22573 22697 22709 22718 22731 22732 22834
## [5557] 22861 22894 22898 23019 23024 23040 23128 23141 23161 23217 23218 23224
## [5569] 23230 23235 23253 23264 23348 23360 23375 23386 23390 23401 23499 23544
## [5581] 23589 23653 23662 23673 23686 23701 23705 23920 23926 23928 23940 24028
## [5593] 24058 24070 24072 24080 24179 24193 24206 24218 24293 24321 24328 24390
## [5605] 24401 24427 24442 24458 24543 24557 24560 24574 24583 24591 24677 24688
## [5617] 24704 24706 24795 24810 24819 24841 24849 24851 24931 24957 24965 24970
## [5629] 24976 24978 24989 25003 25013 25165 25177 25186 25188 25204 25207 25223
## [5641] 25225 25240 25243 25267 25276 25426 25439 25461 25471 25485 25516 25531
## [5653] 25554 25693 25708 25718 25731 25767 25774 25792 25806 25830 26046 26060
## [5665] 26062 26079 26090 26092 26108 26111 26121 26246 26318 26329 26363 26382
## [5677] 26541 26548 26566 26574 26588 26600 26642 26790 26805 26806 26841 26850
## [5689] 26957 26991 26996 27003 27026 27027 27134 27141 27153 27173 27206 27230
## [5701] 27241 27299 27302 27311 27317 27322 27341 27342 27427 27436 27443 27447
## [5713] 27471 27548 27551 27560 27562 27597 27687 27688 27695 27696 27699 27700
## [5725] 27718 27720 27721 27729 27742 27748 27756 27759 27764 27765 27770 27772
## [5737] 27775 27782 27791 27872 27876 27901 27917 27921 27925 27929 27931 27933
## [5749] 28021 28061 28080 28082 28171 28183 28214 28224 28234 28351 28352 28354
## [5761] 28356 28638 28640 28643 28644 28647 28681 28683 28685 28686 28687 28688
## [5773] 28822 28823 28824 28825 28826 28827 28828 28948 28949 28950 28951 28952
## [5785] 28954 28955 28956 29061 29063 29064 29065 29066 29067 29068 29069 29070
## [5797] 29202 29204 29205 29208 29209 29211 29341 29342 29344 29345 29346 29463
## [5809] 29464 29465 29466 29468 29469 29470 29471 29596 29597 29601 29602 29603
## [5821] 29736 29737 29739 29741 29743 29885 29889 29971 29975 29976 30088 30196
## [5833] 30197 30328 30331 30470 30471 30472 30473 30475 30477 30604 30605 30606
## [5845] 30647 30648 30767 30768 30772 30969 30974 30978 30979 31134 31136 31137
## [5857] 31141 31260 31261 31263 31267 31411 31412 31413 31415 31416 31419 31420
## [5869] 31536 31538 31539 31540 31541 31542 31645 31646 31647 31648 31650 31652
## [5881] 31731 31732 31733 31734 31736 31801 31802 31805 31806 31871 31873 31874
## [5893] 31875 31877 31878 31879 31962 31965 31966 31968 31970 31971 31972 32063
## [5905] 32064 32065 32066 32067 32068 32070 32071 32189 32191 32192 32193 32195
## [5917] 32196 32197 32198 32199 32200 32422 32424 32427 32429 32431 32639 32643
## [5929] 32644 32645 32647 32651 32854 32855 32859 32862 33067 33069 33070 33071
## [5941] 33072 33264 33265 33268 33269 33365 33367 33369 33370 33445 33449 33450
## [5953] 33451 33608 33609 33611 33614 33616 33617 33618 33926 33929 33930 33931
## [5965] 34002 34003 34004 34008 34009 34011 34245 34247 34253 34255 34256 34477
## [5977] 34480 34482 34488 34685 34687 34789 34791 34792 34793 34996 34997 35004
## [5989] 35214 35217 35218 35219 35436 35437 35440 35441 35444 35445 6346 8425
## [6001] 18921 19119 20249 20345 20367 20452 20855 20968 20982 21052 21057 21094
## [6013] 21118 21153 21175 21513 21630 21721 21820 21882 22183 22188 22252 22390
## [6025] 22580 22676 22838 22874 22884 22889 22905 22908 22996 23026 23030 23049
## [6037] 23142 23148 23154 23159 23166 23251 23406 23581 23684 23691 24047 24222
## [6049] 24297 24409 24425 24429 24541 24585 24675 24713 25259 25511 25514 26075
## [6061] 26865 26984 28357 32425 1108 1110 1675 1921 3682 4042 4132 5747
## [6073] 7712 11440 12637 12645 12890 13560 13647 13914 14082 14254 14673 14781
## [6085] 15075 15182 15201 15335 15347 15379 15522 15545 15560 15741 16030 16634
## [6097] 16757 16801 16926 17263 19134 20858 27870 134 191 200 301 309
## [6109] 381 385 477 540 560 622 685 703 797 805 890 892
## [6121] 956 963 1055 1059 1118 1130 1212 1224 1330 1333 1398 1414
## [6133] 1488 1633 1683 1703 1739 1745 1787 1791 1795 1799 1801 1862
## [6145] 1927 1935 1987 1990 2023 2094 2095 2161 2227 2424 2546 2644
## [6157] 2762 2924 2940 3055 3068 3134 3137 3201 3207 3264 3270 3284
## [6169] 3340 3346 3410 3424 3492 3619 3620 3662 3671 3712 3720 3821
## [6181] 3836 3837 3911 3914 3934 4034 4084 4090 4107 4150 4155 4374
## [6193] 4397 4399 4574 4578 4581 4622 4627 4742 4762 4775 4998 5079
## [6205] 5304 5327 5659 6682 6709 6980 7190 7353 7476 7666 7822 7956
## [6217] 8088 8175 8294 8447 8614 8726 8933 8994 18831 18841 18919 18947
## [6229] 20098 20106 20172 20202 20255 20357 20362 20363 20713 20799 20802 20846
## [6241] 20916 22541 22583 22734 22871 23600 24215 24299 24455 24459 24598 25465
## [6253] 25487 25737 26041 26073 26109 26117 26255 26374 26387 26521 26551 27736
## [6265] 27795 27913 27927 27930 28017 28052 28073 28091 28239 28350 28353 28355
## [6277] 28642 28646 28684 29600 29735 29740 29884 29972 29973 30089 30198 30330
## [6289] 30474 30600 30770 30771 30773 30774 30775 30971 30972 30973 30975 30977
## [6301] 30980 31135 31139 31140 31262 31265 31876 31963 31964 32069 32188 32190
## [6313] 32420 32423 32426 32642 32649 32650 33444 33615 33925 33927 33932 34006
## [6325] 34007 34249 34251 34478 34483 34484 34487 34684 34788 34794 34795 1435
## [6337] 13491 14476 14691 14880 15077 15085 15367 15368 15566 15773 15924 16036
## [6349] 16139 16269 296 299 706 784 1237 1943 1981 2142 2144 2172
## [6361] 2306 2307 2831 2945 3132 3333 3719 3729 3913 3916 3938 3941
## [6373] 3943 4180 4183 4407 4409 4729 4849 4854 5627 5654 5735 5904
## [6385] 6065 6067 6349 6605 6649 6758 6978 6987 7538 7842 8205 8450
## [6397] 8459 9313 9482 9651 9791 9810 10559 13390 13725 13909 14089 14091
## [6409] 14375 14387 14467 14680 14782 14967 15044 15079 15168 15191 15956 16034
## [6421] 16258 16325 16424 16550 17667 17678 19059 19140 19437 19440 20111 20729
## [6433] 21216 21447 21450 22723 22897 23037 23137 23579 24208 24419 24421 24570
## [6445] 24686 24715 24808 25169 25255 25435 25483 25549 25686 25705 25755 26084
## [6457] 26086 26235 26543 26822 26824 26871 27007 27012 27215 27265 27324 27332
## [6469] 27340 27450 27463 27465 27469 27576 27579 27692 28044 28208 28639 28682
## [6481] 29207 29210 29338 29343 29467 29738 29970 30478 30599 30601 30976 31264
## [6493] 31266 31417 31537 31649 31651 31653 31730 31735 31737 31804 31807 31872
## [6505] 31969 32640 32857 32860 33074 33266 33267 33364 33447 33612 33619 34475
## [6517] 34992 35000 35213 317 323 795 908 977 1070 1129 1424 1506
## [6529] 1632 1700 1706 1750 1811 1869 1941 1989 2105 2186 2325 2363
## [6541] 2410 2437 2446 2674 2771 2851 2923 2950 3066 3073 3131 3143
## [6553] 3149 3193 3205 3280 3361 3427 3673 3723 3852 3936 4163 4402
## [6565] 4589 4597 4637 4747 4778 4783 4938 5680 5722 5728 5865 6141
## [6577] 6274 6389 6413 6638 6765 7025 7202 7358 7535 7637 7856 8464
## [6589] 9654 9737 9822 10076 10225 10239 10396 10401 10476 10485 10556 10569
## [6601] 10658 10672 10762 10767 10864 10873 10988 10992 11122 11131 11254 11354
## [6613] 11469 11557 11659 11674 11760 11823 11904 11917 11994 12002 12087 12099
## [6625] 12114 12224 12379 12503 12522 12532 12654 12802 12857 12934 12939 12953
## [6637] 13063 13070 13082 13091 13232 13242 13251 13364 13378 13552 13559 13678
## [6649] 13696 13896 13905 14011 14092 14231 14245 14393 14396 14397 14468 14480
## [6661] 14546 14559 14571 14664 14693 14743 14752 14758 14881 14950 14960 15074
## [6673] 15185 15354 15551 15770 15944 15948 16029 16037 16102 16132 16220 16420
## [6685] 16429 16542 16553 16570 16617 16624 16651 16750 16763 16776 16888 16899
## [6697] 16928 17033 17150 17159 17269 17277 17284 17411 17419 17422 17424 17542
## [6709] 17549 17589 17590 17606 17686 17750 17768 17843 17939 18003 18098 18245
## [6721] 18355 18477 18568 18578 18657 18683 18747 18766 18842 18849 18853 18940
## [6733] 19061 19128 19129 19286 19294 19407 19421 19423 19425 19555 19583 19706
## [6745] 19724 20196 20265 20347 20454 25816 25834 26131 26482 26866 27039 27583
## [6757] 28024 28078 28230 28358 28645 28829 29062 29206 29339 29599 29742 29888
## [6769] 29974 30087 30199 30329 30602 30603 30649 30769 30776 30970 31138 34248
## [6781] 20654 3213 3282 4058 8108 9319 11900 13039 13200 16227 16438 29340
## [6793] 29598 29744 29886 33613 34784 321 626 701 951 1068 1196 1313
## [6805] 1477 1510 1516 2226 2314 2323 2441 2443 2688 2748 2752 2852
## [6817] 3430 3439 3654 3678 3704 3848 4021 6119 6965 6990 7509 10570
## [6829] 11250 12111 13410 13715 18105 18106 19787 19892 20534 20606 20650 21276
## [6841] 397 695 2315 4966 5088 5314 5328 5353 5374 5380 5645 5666
## [6853] 6254 7160 7222 7364 7472 7659 8845 8848 9853 10242 11123 12194
## [6865] 12195 12216 12833 12928 13226 13541 13675 13733 13871 14064 14066 14201
## [6877] 14235 14778 15486 15487 15757 15782 15783 15940 16009 16026 16117 16130
## [6889] 16133 16155 16226 16239 16552 16592 16768 16783 16787 16922 17029 17149
## [6901] 17160 17287 18192 18215 18223 18241 18481 19317 19454 19718 19770 20990
## [6913] 22911 23042 23130 23712 23723 25218 25287 25456 25543 31803 4370 4785
## [6925] 8281 8298 9294 9464 883 5657 5697 10181 12115 12631 12762 13380
## [6937] 13719 24697 24856 25002 25246 25472 25526 25826 26070 26123 26340 27049
## [6949] 27914 27928 13886 13898 14382 17532 17533 17535 19817 20586 20903 21383
## [6961] 21811 21824 21899 23165 23356 23517 26106 26136 26811 27336 27462 27547
## [6973] 27571 28953 29203 29883 29887 30968 31418 31967 32861 33453 34257 34481
## [6985] 18671 20332 20522 30476 11130 13901 15356 22236 14466 26297 26817 28170
## [6997] 28641 30200 30332 31414 32062 32194 32421 32428 32430 32432 32641 32646
## [7009] 32648 32856 32858 33068 33073 33270 33271 33366 33368 33446 33448 33610
## [7021] 33928 34005 34010 34244 34246 34250 34252 34254 34258 34476 34479 34485
## [7033] 34486 34489 34683 34686 34785 34786 34787 34790 34993 34994 34995 34998
## [7045] 34999 35001 35002 35003 35215 35216 35220 35221 35222 35438 35439 35442
## [7057] 35443 35446 35447 35448 106 171 406 469 565 1119 1197 1204
## [7069] 1319 1337 1490 1729 1731 1782 1784 1798 1982 2078 2081 2247
## [7081] 2305 2311 2558 2751 3217 3300 3374 3511 3650 3785 3814 4054
## [7093] 4876 4962 5116 5201 5338 5702 5837 5846 6685 6738 7052 7055
## [7105] 7145 7644 8109 8162 8215 8277 8497 8699 9070 9206 9298 9381
## [7117] 9463 9521 10454 10465 10574 10646 10740 10844 10962 11232 11436 11441
## [7129] 11447 11549 11651 11744 12082 12186 12477 12622 13054 13349 13547 13671
## [7141] 14218 14659 14746 14946 15169 15322 15506 15684 15686 15846 16014 16109
## [7153] 16111 16224 16546 16606 16995 17133 17382 17825 17895 18567 20184 20258
## [7165] 20339 20437 20527 20581 20584 21818 21885 22847 22998 23124 23894 24405
## [7177] 24556 24708 25717 25724 25766 25791 25798 26049 26071 26346 26584 26660
## [7189] 26793 26854 26990 27050 27181 27282 27309 27440 27550 27762 27867 28039
## [7201] 28344 28485 29173 29321 29449 29586 29715 29825 30624 30753 31120 31227
## [7213] 31398 31529 31638 31867 32051 32175 32179 33049 34442 34677 34827 35036
## [7225] 35249 35415 52 96 168 173 174 179 336 338 340 404
## [7237] 409 487 488 567 580 638 645 817 824 866 957 960
## [7249] 970 1033 1035 1053 1058 1060 1125 1136 1145 1207 1241 1247
## [7261] 1322 1329 1407 1417 1428 1489 1558 1636 1677 1743 1790 1868
## [7273] 1925 1991 2027 2029 2086 2101 2213 2214 2262 2265 2292 2302
## [7285] 2415 2433 2434 2436 2449 2450 2482 2483 2484 2569 2584 2665
## [7297] 2686 2702 2707 2737 2756 2770 2778 2783 2839 2843 2847 2849
## [7309] 2864 2918 2936 2941 2948 2956 3086 3098 3105 3119 3159 3168
## [7321] 3219 3224 3229 3304 3307 3367 3373 3392 3403 3478 3514 3521
## [7333] 3531 3534 3541 3602 3603 3604 3606 3651 3655 3664 3683 3768
## [7345] 3769 3770 3771 3792 3796 3806 3808 3840 3845 3849 3854 3855
## [7357] 3978 3983 3985 3990 4062 4070 4102 4105 4124 4138 4144 4145
## [7369] 4154 4157 4188 4359 4381 4389 4394 4401 4560 4571 4591 4592
## [7381] 4595 4605 4612 4617 4630 4634 4636 4642 4722 4733 4734 4745
## [7393] 4746 4757 4761 4771 4772 4811 4817 4818 4819 4884 4892 4895
## [7405] 4901 4906 4981 4989 4997 5000 5128 5131 5145 5146 5150 5210
## [7417] 5219 5221 5237 5249 5268 5334 5348 5367 5368 5370 5383 5531
## [7429] 5533 5554 5557 5570 5592 5711 5719 5733 5745 5746 5752 5757
## [7441] 5851 5872 5887 5896 5903 6061 6086 6088 6107 6117 6123 6132
## [7453] 6226 6246 6256 6261 6269 6271 6276 6345 6350 6361 6369 6376
## [7465] 6396 6403 6421 6530 6578 6581 6588 6599 6695 6698 6707 6708
## [7477] 6714 6719 6748 6777 6780 7060 7069 7098 7101 7105 7135 7148
## [7489] 7174 7192 7198 7216 7225 7327 7331 7339 7343 7355 7366 7485
## [7501] 7495 7513 7517 7528 7663 7669 7694 7713 7805 7823 7957 7973
## [7513] 7980 8084 8086 8112 8178 8184 8197 8209 8301 8316 8334 8508
## [7525] 8519 8524 8553 8563 8611 8615 8617 8619 8721 8737 8814 8841
## [7537] 8919 8937 9014 9079 9090 9097 9219 9230 9237 9295 9309 9373
## [7549] 9387 9395 9399 9470 9474 9485 9518 9530 9542 9545 9546 9617
## [7561] 9630 9636 9642 9663 9718 9719 9723 9724 9732 9736 9804 9807
## [7573] 9818 9825 9832 9858 9940 9954 9955 9970 10050 10060 10062 10065
## [7585] 10165 10174 10190 10215 10238 10240 10244 10251 10384 10400 10403 10406
## [7597] 10460 10463 10469 10471 10479 10482 10551 10558 10562 10567 10571 10643
## [7609] 10661 10664 10666 10751 10752 10754 10756 10763 10843 10865 10870 10872
## [7621] 10878 10881 10972 10974 10983 10987 10997 11000 11119 11128 11143 11251
## [7633] 11264 11269 11270 11274 11355 11364 11368 11371 11372 11464 11477 11484
## [7645] 11565 11572 11574 11579 11657 11665 11676 11680 11739 11751 11822 11832
## [7657] 11910 11912 11985 11996 12008 12093 12094 12202 12204 12223 12358 12359
## [7669] 12378 12500 12513 12528 12646 12648 12652 12666 12817 12837 12864 12916
## [7681] 12935 12945 12955 13080 13085 13089 13249 13253 13399 13402 13535 13695
## [7693] 13731 13875 13913 14025 14057 14081 14208 14236 14432 14436 14443 14470
## [7705] 14563 14578 14670 14871 14957 15180 15337 15361 15542 15887 16024 16038
## [7717] 16143 16244 16347 16443 16582 17273 17491 17496 17601 17682 17756 17840
## [7729] 17899 17978 17993 18001 18108 18112 18114 18229 18342 18344 18457 18478
## [7741] 18479 18487 18492 18752 18757 18762 18827 18833 18937 18938 19022 19025
## [7753] 19111 19112 19117 19133 19227 19228 19230 19242 19371 19432 19451 19538
## [7765] 19569 19571 19643 19651 19674 19794 19804 19821 19880 19888 19897 19954
## [7777] 19962 20031 20034 20038 20275 20278 20353 20366 20447 20459 20463 20520
## [7789] 20539 20587 20592 20644 20660 20697 20707 20711 20714 20722 20725 20794
## [7801] 20795 20849 20857 20911 20914 20984 20987 20995 21047 21098 21114 21159
## [7813] 21166 21220 21221 21227 21233 21282 21288 21291 21333 21335 21337 21389
## [7825] 21391 21396 21433 21441 21444 21493 21501 21570 21575 21622 21623 21658
## [7837] 21665 21674 21737 21740 21741 21745 21760 21769 21808 21815 21822 21823
## [7849] 21826 21830 21887 21893 21895 21947 21950 21964 22004 22011 22051 22076
## [7861] 22115 22117 22119 22123 22173 22179 22182 22240 22296 22306 22369 22371
## [7873] 22456 22462 22471 22540 22561 22572 22713 22717 22720 22843 22866 22881
## [7885] 22883 22904 22992 23013 23029 23043 23047 23048 23127 23129 23157 23170
## [7897] 23227 23233 23245 23252 23259 23342 23349 23351 23354 23361 23362 23363
## [7909] 23376 23382 23383 23389 23400 23405 23495 23509 23510 23550 23575 23584
## [7921] 23663 23670 23693 23698 23890 23907 23909 23911 23916 23917 23939 24040
## [7933] 24046 24064 24181 24200 24284 24290 24300 24304 24319 24389 24400 24417
## [7945] 24424 24428 24431 24445 24457 24538 24569 24572 24581 24588 24676 24678
## [7957] 24685 24699 24709 24799 24823 24827 24830 24837 24855 24857 24859 24868
## [7969] 24928 24935 24943 24951 24956 24961 24968 24982 24993 24994 25008 25015
## [7981] 25016 25195 25215 25232 25236 25254 25258 25262 25275 25286 25415 25423
## [7993] 25443 25454 25478 25498 25510 25525 25534 25535 25542 25556 25692 25702
## [8005] 25735 25739 25780 25785 25802 26061 26067 26077 26082 26113 26120 26125
## [8017] 26126 26269 26275 26330 26388 26451 26483 26500 26513 26572 26594 26603
## [8029] 26646 26650 26652 26799 26832 26851 26988 27000 27028 27035 27043 27044
## [8041] 27148 27169 27189 27196 27201 27205 27208 27251 27254 27269 27304 27333
## [8053] 27338 27414 27415 27416 27424 27430 27432 27435 27437 27442 27449 27464
## [8065] 27558 27575 27587 27591 27592 27596 27684 27691 27705 27708 27713 27716
## [8077] 27717 27728 27735 27766 27769 27771 27784 27786 27797 27858 27865 27871
## [8089] 27880 27888 27891 27895 27899 27900 27903 27907 27912 28029 28033 28049
## [8101] 28070 28072 28086 28090 28174 28185 28203 28222 28236 28341 28342 28347
## [8113] 28349 28488 28489 28490 28491 28671 28673 28674 28675 28677 28678 28807
## [8125] 28810 28812 28814 28815 28816 28817 28819 28820 28821 28929 28930 28931
## [8137] 28932 28933 28934 28935 28936 29041 29043 29044 29046 29047 29048 29049
## [8149] 29175 29176 29178 29179 29181 29182 29183 29184 29186 29315 29317 29318
## [8161] 29320 29323 29325 29326 29327 29329 29440 29441 29442 29443 29445 29450
## [8173] 29451 29578 29580 29582 29584 29708 29709 29710 29712 29714 29866 29867
## [8185] 29868 29869 29870 30179 30313 30316 30453 30614 30615 30621 30742 30743
## [8197] 30925 30926 31113 31115 31119 31217 31218 31393 31396 31522 31526 31527
## [8209] 31637 31723 31725 31865 31954 32049 32170 32174 32176 32394 32399 32615
## [8221] 32616 32832 32838 33044 33239 33242 33344 33347 33439 33442 33593 33764
## [8233] 33771 33774 33969 33975 34199 34435 34676 34822 34826 35034 35242 35245
## [8245] 35410 35412 332 7108 7818 22579 23018 23145 23380 23666 23921 24050
## [8257] 24187 24225 24327 24436 24453 24550 24564 24580 24967 25224 25266 25553
## [8269] 26472 27922 4060 4567 4816 5843 5876 7090 9460 9801 9933 10840
## [8281] 11268 11644 12779 12859 12940 13101 13492 13506 13705 13848 14045 14452
## [8293] 14561 14763 14771 15330 15340 15494 15526 15527 15721 16329 16355 16434
## [8305] 16573 17138 19768 20696 27339 32050 32618 33046 33341 33346 33438 33973
## [8317] 33978 34205 34446 35248 58 176 331 405 460 492 640 819
## [8329] 864 877 937 945 953 982 1036 1040 1046 1066 1107 1115
## [8341] 1133 1199 1209 1239 1334 1399 1504 1625 1671 1684 1726 1727
## [8353] 1728 1783 1853 1933 1978 2020 2215 2257 2312 2423 2545 2611
## [8365] 2746 2837 2929 3088 3165 3227 3297 3369 3479 3519 3605 3653
## [8377] 3793 3820 3994 4015 4077 4110 4386 4573 4626 4728 4773 4813
## [8389] 4869 4975 5337 5518 5701 5832 6076 6125 6233 6273 6277 6327
## [8401] 6418 6550 6648 6732 6766 7054 7129 7158 7218 7332 7460 7518
## [8413] 7646 7710 7859 7940 8064 8166 8271 8491 8567 8622 8623 8690
## [8425] 8744 8810 8852 8921 8942 8984 9017 9409 10960 11093 11228 11348
## [8437] 11445 11550 11643 11742 49 89 163 1116 1201 3218 3301 4369
## [8449] 4719 5706 5873 6079 6230 6340 6359 6655 7798 7811 7938 8057
## [8461] 8099 8161 8196 8283 9110 10398 12625 12902 13196 16547 16591 18566
## [8473] 20088 20094 20105 20176 20178 20261 20264 20330 20344 20649 20712 20841
## [8485] 20898 20980 22297 22365 22436 22445 22465 22539 22543 22544 22551 22575
## [8497] 22677 22845 23648 24034 24038 24202 24305 24324 24395 24449 24547 25185
## [8509] 25198 25245 25433 25459 25469 25481 25491 25501 25538 25696 25707 25728
## [8521] 25756 26059 26069 26074 26236 26283 26302 26320 26391 26452 26486 26558
## [8533] 26568 26612 26614 27855 27863 28167 28188 28241 28339 28340 28345 28483
## [8545] 28484 28486 28487 28670 29439 29579 29716 29824 29871 29872 29873 29952
## [8557] 29953 29954 30071 30072 30073 30076 30178 30184 30310 30317 30319 30444
## [8569] 30445 30446 30447 30450 30451 30454 30617 30618 30746 30749 30923 30924
## [8581] 30928 30930 31114 31117 31219 31220 31222 31224 31225 31226 31391 31863
## [8593] 31949 31951 31953 32046 32168 32169 32172 32177 32178 32393 32395 32397
## [8605] 32398 32402 32403 32610 32611 32612 32614 32619 32837 33590 33594 33763
## [8617] 33768 33770 33772 33970 33971 33972 33974 33977 33979 34200 34202 34203
## [8629] 34206 34208 34439 34440 34443 34445 34447 34817 34820 34824 34825 35028
## [8641] 35247 5847 6080 15709 15847 16027 29951 30745 1067 1421 1986 2024
## [8653] 3235 3376 3400 3516 4896 4899 4903 6266 6284 7815 7970 8059
## [8665] 8170 8176 8330 8489 8500 8528 8606 8695 8710 8822 8824 8986
## [8677] 9204 9214 9375 9396 9456 9466 9467 9809 10051 10199 10745 10749
## [8689] 10837 10861 10869 10982 11107 11146 11239 11260 11452 11462 11820 11987
## [8701] 12101 12182 12473 12489 12758 13369 13379 13674 14020 14937 15058 16327
## [8713] 16336 16419 16430 16437 16586 16613 16628 16658 16747 16761 16890 16893
## [8725] 16927 17016 17135 17276 17290 17405 17407 17497 17588 17764 17886 17893
## [8737] 17974 18563 18650 18665 18925 18944 19042 19236 19642 20441 20839 20845
## [8749] 21055 21509 22854 23555 23708 24073 24441 24447 24554 24592 24800 24835
## [8761] 25248 25683 25689 25721 25770 26053 26093 26101 26364 26587 26618 26800
## [8773] 26823 26839 26847 26960 27024 27048 27152 27246 27350 27355 27446 27456
## [8785] 27574 27585 27750 27788 27905 27916 28035 28050 28068 28083 28229 28346
## [8797] 28348 28679 28809 29042 29177 29322 29324 29447 29448 29583 29707 30185
## [8809] 30613 30619 30744 30747 30929 31223 31394 31395 31523 31524 31634 31635
## [8821] 31724 31794 31864 31866 32392 32400 32833 32834 32836 33047 34209 34818
## [8833] 35031 1809 2075 2603 4020 4032 4115 4356 5153 6693 7075 7136
## [8845] 7317 7321 7479 7524 7654 7820 7936 7962 8094 8164 8185 8293
## [8857] 8299 8325 8505 8577 8588 8592 8599 8603 8608 8714 8729 8844
## [8869] 8940 9000 9068 9621 9720 9793 9795 9805 9815 9936 9942 9957
## [8881] 10033 10057 10140 10148 10160 10172 10193 10212 10381 10458 10539 10653
## [8893] 10746 10845 10968 11243 11249 11255 11261 11341 11345 11450 11556 11641
## [8905] 11645 11737 11972 12349 12352 12621 12624 12744 12898 13066 13068 13205
## [8917] 13217 13344 13345 13512 13649 13843 13854 13859 14014 14026 14028 14043
## [8929] 14191 14194 14195 14200 14206 14217 14407 14411 14424 14454 14459 14460
## [8941] 14462 14542 14557 14558 14583 14660 14662 14686 14742 14749 14756 14762
## [8953] 14873 14943 14966 15042 15178 15489 15514 15523 15548 15863 16040 16352
## [8965] 16423 16448 16637 16650 16740 16758 16778 16891 16906 16921 17034 17047
## [8977] 17126 17128 17161 17274 17392 17506 17585 17595 17658 17671 17746 17751
## [8989] 17752 17830 17980 18069 18194 18213 18221 18328 18447 20083 20252 21877
## [9001] 21937 21994 23536 23682 23883 24036 25777 25837 25840 26039 26045 26434
## [9013] 26522 26542 26619 26655 26835 27856 28669 28672 28808 28811 28813 28937
## [9025] 28938 29045 29180 29316 29319 29446 29581 29713 30074 30075 30177 30180
## [9037] 30181 30182 30314 30318 30455 30622 30748 30752 30921 30931 31112 31221
## [9049] 31397 31528 31636 31722 31950 31952 32047 32048 32171 32173 32396 32401
## [9061] 32613 32617 32831 32835 33042 33043 33045 33048 33240 33241 33243 33340
## [9073] 33342 33343 33345 33440 33441 33589 33591 33592 33765 33766 33767 33773
## [9085] 33967 33968 33976 33980 34201 34204 34207 34436 34437 34438 34449 34675
## [9097] 34819 34823 35029 35030 35241 35243 35411 35413 35414 185 16235 2077
## [9109] 9289 9301 11006 11905 12639 18319 24286 2212 2637 3828 3992 6371
## [9121] 7074 7086 7163 7167 7483 7688 8602 8703 9383 9528 9624 9662
## [9133] 9743 9745 9932 9934 10058 10232 10383 11824 12106 12184 12321 12333
## [9145] 12344 12348 12633 12787 13194 14032 14222 14418 14757 15043 15073 15183
## [9157] 15188 15328 15497 15540 15692 15704 15883 15890 16010 17152 17395 17739
## [9169] 18084 18191 18197 18198 18202 18209 18318 18329 18363 18564 19646 20169
## [9181] 20456 20721 20843 20973 21102 21162 21763 21817 22304 23546 23710 25484
## [9193] 2623 2758 2764 3780 3831 5114 5123 5217 5224 5342 5527 5551
## [9205] 5723 7083 7170 7181 7318 7324 7471 7499 7954 8074 8705 8819
## [9217] 8913 9648 11459 11975 12091 12191 12327 12337 13240 13517 13551 13693
## [9229] 13712 13718 13863 13867 14036 14198 14661 15218 15357 15363 15376 15557
## [9241] 15689 15697 15871 15909 16032 16334 16734 16754 16764 16883 16896 17011
## [9253] 17123 17142 17254 17266 17291 18072 18083 18348 18749 19211 19224 19237
## [9265] 19388 19395 19406 19542 19577 19652 20210 20523 20543 20578 22177 23569
## [9277] 23669 23700 23722 24969 25201 25282 25438 25475 26583 29040 4383 6221
## [9289] 7829 8314 8918 8996 10764 18580 5742 7839 8987 13406 13558 23516
## [9301] 23523 24075 25714 26036 26048 28676 29174 11649 12105 13373 14965 15507
## [9313] 15508 15510 16240 16260 16901 17020 17897 18376 18910 20355 22054 22059
## [9325] 22698 23593 25021 33443 35027 15219 21035 30449 5203 5204 5229 5256
## [9337] 7146 7151 7207 9287 9941 10963 10970 11095 12354 12368 13684 14008
## [9349] 14060 14077 14083 14213 15312 16557 16772 17022 19213 20535 20545 30448
## [9361] 15207 15366 15561 15899 16124 16219 16264 16607 16749 17015 13688 16745
## [9373] 16885 16887 16895 16990 17127 17131 17153 17257 17260 18371 35033 20588
## [9385] 33769 34441 34674 24397 25447 28343 28680 28818 29050 29185 29314 29328
## [9397] 29444 29585 29711 30183 30311 30312 30315 30452 30616 30620 30623 30750
## [9409] 30751 30922 30927 31116 31118 31392 31525 34444 34448 34821 35032 35035
## [9421] 35244 35246 35409 107 272 353 646 825 1029 1763 2904 2994
## [9433] 3001 3669 4302 4395 4561 4584 4676 5104 5266 5344 5373 5885
## [9445] 6113 6264 6897 7356 7959 8062 8203 8295 8427 8999 9094 9220
## [9457] 9390 9475 9548 9655 10402 10656 11997 12103 12371 12381 12514 12616
## [9469] 12932 13241 13502 13703 17275 17503 17596 17662 17831 17983 18240 18346
## [9481] 18458 18571 18576 35231 35435 44 47 50 54 86 88 90
## [9493] 93 94 97 103 178 255 258 280 359 374 436 437
## [9505] 447 566 571 572 574 575 576 578 636 637 644 711
## [9517] 715 719 726 820 823 828 830 881 899 994 999 1001
## [9529] 1008 1085 1090 1094 1150 1167 1176 1179 1276 1290 1394 1444
## [9541] 1460 1464 1523 1536 1575 1577 1580 1583 1587 1599 1602 1609
## [9553] 1613 2229 2273 2300 2364 2411 2551 2791 2970 3075 3135 3252
## [9565] 3276 3389 3495 3497 3498 3499 3536 3657 3675 3713 3829 3842
## [9577] 3931 3932 4237 4242 4267 4270 4286 4293 4296 4309 4314 4329
## [9589] 4332 4337 4390 4582 4663 4672 4758 4786 4826 4827 4828 4871
## [9601] 4882 4885 4886 4904 4964 4978 5086 5091 5098 5109 5247 5263
## [9613] 5336 5358 5516 5589 5726 5727 5868 5877 6097 6126 6139 6140
## [9625] 6228 6249 6288 6334 6374 6608 6622 6624 6635 6637 6826 6835
## [9637] 6846 6853 6920 6957 6979 7139 7173 7185 7323 7351 7357 7469
## [9649] 7508 7522 7641 7672 7673 7674 7699 7797 7846 7853 7950 7961
## [9661] 8058 8065 8097 8163 8180 8201 8286 8333 8434 8454 8461 8572
## [9673] 8598 8605 8709 8724 8725 8728 8735 8832 8835 8839 8917 8935
## [9685] 8938 8941 8988 9003 9004 9059 9064 9084 9199 9213 9394 9487
## [9697] 9549 9658 9730 9816 9820 9827 9836 9958 10056 10061 10138 10150
## [9709] 10152 10161 10166 10195 10200 10202 10211 10226 10376 10391 10451 10470
## [9721] 10560 10564 10568 10634 10639 10644 10650 10662 10730 10739 10742 10847
## [9733] 10866 10868 10984 10994 11097 11117 11259 11370 11454 11455 11458 11545
## [9745] 11552 11573 11749 11753 11757 11814 11826 11893 11899 11906 11967 11969
## [9757] 11992 12109 12187 12479 12494 12519 12641 12647 12736 12771 12822 12836
## [9769] 12891 12903 12904 12907 12921 13044 13073 13075 13204 13209 13221 13222
## [9781] 13237 13356 13359 13375 13487 13513 13526 13528 13553 13664 13668 13698
## [9793] 13723 13732 13847 13865 13874 13882 13891 14046 1357 1923 3386 6267
## [9805] 6930 8092 16633 17398 17763 17826 17906 18092 18203 18222 18350 18454
## [9817] 18912 19036 19039 19098 19137 19207 19209 19231 19379 19559 19648 19653
## [9829] 19753 19764 19869 19901 19948 20084 20097 20103 20200 20244 20250 20260
## [9841] 20279 20337 20340 20368 20438 20442 20448 20467 20577 20596 20704 20708
## [9853] 20720 20786 21050 21105 21173 21212 21217 21290 21718 21834 21883 21889
## [9865] 21935 21936 21941 21993 22002 22053 22113 22125 22170 22174 22241 22367
## [9877] 22548 22565 22664 22686 22695 22706 22726 22729 22832 22837 22849 22858
## [9889] 22859 22860 22877 22900 22907 22995 22999 23004 23009 23014 23034 23036
## [9901] 23039 23158 23160 23221 23229 23352 23505 23525 23533 23560 23591 23661
## [9913] 23688 23690 23704 23731 23889 23938 24026 24043 24077 24177 24221 24287
## [9925] 24320 24434 24450 24539 24567 24597 24701 24812 24818 24975 25160 25178
## [9937] 25237 25704 25716 25825 25829 26354 26550 26553 26623 26778 26801 32184
## [9949] 32419 32850 1295 5339 9200 10385 12175 12189 12342 12619 13096 13220
## [9961] 13393 13498 13666 14970 15046 15047 15057 16802 16911 17021 17124 17154
## [9973] 17372 17494 17890 18658 19441 32060 35007 35010 42 250 564 816
## [9985] 884 889 988 996 997 1079 1091 1153 1156 1163 1254 1260
## [9997] 1360 1363 1373 1451 1452 1525 1526 1588 1592 1649 1652 1689
## [10009] 1690 1698 1770 1821 1828 1883 1888 1891 1929 1984 2134 2162
## [10021] 2293 2554 2577 2796 2876 2888 2893 2962 2964 2969 2976 2986
## [10033] 3047 3048 3057 3125 3139 3194 3196 3253 3378 3383 3509 3512
## [10045] 3622 3623 3660 3708 3818 3823 3826 4191 4197 4207 4260 4365
## [10057] 4371 4558 4575 4659 4700 4764 4982 5084 5216 5347 5539 5694
## [10069] 5704 5707 5848 5852 5856 5859 5866 6064 6077 6085 6137 6234
## [10081] 6242 6337 6341 6352 6798 6861 6981 7474 7638 7667 7696 7709
## [10093] 7848 7977 8100 8157 8305 8419 8451 8591 8723 8827 8929 8931
## [10105] 9002 9061 9071 1378 6614 6634 16421 16512 17406 17583 17593 17673
## [10117] 17677 17679 17740 17837 18822 18826 18830 18922 18926 19886 20027 20029
## [10129] 20100 20185 20192 20198 20254 20259 20266 20780 20788 20792 20796 20850
## [10141] 20895 20900 20913 20924 20926 20928 20974 20975 20983 21039 21620 21634
## [10153] 21676 22376 22457 22576 23588 23667 23692 23718 23903 23932 23946 24068
## [10165] 24074 24183 24198 24314 24315 24391 24414 24454 25283 25417 25418 25460
## [10177] 25470 25492 25530 25754 25758 25762 25764 25808 26052 26064 26080 26282
## [10189] 26288 26412 26547 26641 27790 27874 27902 28020 28169 28182 28194 28231
## [10201] 28360 28363 28364 28494 28496 28692 29593 29829 30594 30597 30942 31131
## [10213] 31403 32848 27011 27222 27239 30765 33256 34469 2069 2151 2412 2413
## [10225] 2738 2809 2823 3257 3394 4246 4695 4823 4891 6109 6631 6641
## [10237] 6873 7178 7968 7974 7991 8087 8448 8566 8733 9302 9310 9372
## [10249] 9457 9559 9848 11114 12909 12929 13058 13849 14383 14401 14403 14548
## [10261] 14656 14852 14857 15736 15752 15930 17375 18244 18818 18915 19014 19028
## [10273] 19127 19204 19376 19563 20907 21278 25506 26047 26085 26319 27247 27798
## [10285] 28040 28365 28689 28693 28831 28833 28944 28946 29057 29060 29963 29966
## [10297] 31237 31404 31405 31409 31643 33606 33813 1687 1707 1758 1767 1826
## [10309] 1830 1899 1932 1938 1996 2317 2320 2365 2430 2594 2696 2744
## [10321] 3079 3151 3202 3496 3500 3621 4250 6949 7340 7348 7875 8431
## [10333] 8438 8587 8719 9106 9226 9527 9840 10205 10249 10674 12746 13916
## [10345] 24949 1362 3061 3262 11891 30195 1455 1457 2155 2169 2173 2228
## [10357] 4219 4870 4898 4900 4993 4995 5553 6792 6816 7162 7165 7231
## [10369] 7322 7325 7507 8422 8702 9716 9811 9845 10048 10189 10207 10642
## [10381] 11964 11990 13229 17659 17898 18734 18755 19641 20361 22665 35012 5378
## [10393] 5545 5591 5734 5890 7018 7221 7227 7336 7464 7482 7534 7862
## [10405] 9371 9403 9465 9483 10981 11461 12183 12324 13081 13531 13717 13893
## [10417] 15383 15511 15559 15934 15964 16017 16104 16136 16266 16527 16609 16639
## [10429] 16646 16793 16904 16918 17008 17042 17158 17293 17400 17498 17687 17743
## [10441] 18074 18341 18357 18465 18565 18572 19120 19225 19234 19248 19382 19408
## [10453] 19444 19644 19649 19890 20531 20589 20599 20638 20646 20656 20726 20919
## [10465] 21042 21117 21280 21285 21334 21390 21499 22058 22110 22681 22716 23126
## [10477] 23377 23599 23685 24712 24803 24832 24839 24930 24963 24964 25226 25244
## [10489] 25520 25773 25814 26091 26632 26956 27238 27327 27422 27581 27794 28947
## [10501] 29196 29197 29198 29201 29335 31798 31870 33258 33259 33454 33605 5568
## [10513] 5005 5579 5888 6278 6363 6390 7001 10075 11448 11576 11747 11980
## [10525] 13539 13555 13707 14564 14679 14786 14875 14971 14974 15065 15164 15311
## [10537] 15491 15499 15515 15745 15962 16013 16021 16039 16041 16127 16140 16225
## [10549] 16252 16356 25189 25234 25455 25539 25685 25771 25784 25822 26112 26124
## [10561] 26298 26784 26840 27294 27352 27420 27460 28204 28497 28690 28695 29059
## [10573] 29460 12507 13197 13350 13360 14015 14197 14458 16098 16121 16128 16496
## [10585] 17373 17488 18462 30189 5535 14223 14233 15767 16525 16771 17000 19218
## [10597] 30326 3291 16089 17014 30463 25811 21556 14250 18768 18935 19546 20902
## [10609] 20991 25703 26407 26821 26828 26961 27032 27140 27161 27300 27316 27545
## [10621] 27568 27693 27698 27749 27890 28051 28071 28197 28211 28359 28361 28362
## [10633] 28492 28493 28495 28691 28694 28830 28832 28834 28945 29058 29199 29200
## [10645] 29336 29337 29461 29462 29594 29595 29730 29731 29732 29733 29734 29877
## [10657] 29878 29879 29880 29881 29882 29964 29965 29967 29968 29969 30082 30083
## [10669] 30084 30085 30086 30188 30190 30191 30192 30193 30194 30323 30324 30325
## [10681] 30327 30462 30464 30465 30466 30467 30468 30469 30595 30596 30598 30762
## [10693] 30763 30764 30766 30939 30940 30941 30943 30944 30945 31126 31127 31128
## [10705] 31129 31130 31132 31133 31235 31236 31238 31239 31240 31406 31407 31408
## [10717] 31410 31533 31534 31535 31641 31642 31644 31729 31799 31800 31960 31961
## [10729] 32061 32181 32182 32183 32185 32186 32187 32415 32416 32417 32418 32631
## [10741] 32632 32633 32634 32635 32636 32637 32638 32847 32849 32851 32852 32853
## [10753] 33059 33060 33061 33062 33063 33064 33065 33066 33254 33255 33257 33260
## [10765] 33261 33262 33263 33358 33359 33360 33361 33362 33363 33455 33456 33457
## [10777] 33458 33459 33460 33602 33603 33604 33607 33809 33810 33811 33812 33814
## [10789] 33815 33993 33994 33995 33996 33997 33998 33999 34000 34001 34232 34233
## [10801] 34234 34235 34236 34237 34238 34239 34240 34241 34242 34243 34463 34464
## [10813] 34465 34466 34467 34468 34470 34471 34472 34473 34474 34681 34682 34797
## [10825] 34798 34799 34800 34801 34802 34803 34804 34805 34806 34807 34808 35005
## [10837] 35006 35008 35009 35011 35013 35014 35015 35016 35017 35223 35224 35225
## [10849] 35226 35227 35228 35229 35230 35426 35427 35428 35429 35430 35431 35432
## [10861] 35433 35434 194 297 390 475 546 2211 3212 3272 3679 4782
## [10873] 4838 4846 4914 4923 4974 4986 5134 5218 5241 5401 5552 6283
## [10885] 6555 7077 7149 8248 8410 8652 8768 9282 9345 9420 9501 11704
## [10897] 11934 12748 13336 13449 13795 14109 14419 14501 14718 28 33 37
## [10909] 39 99 111 199 203 210 295 312 384 388 468 484
## [10921] 541 549 557 616 617 628 690 694 697 780 781 782
## [10933] 794 799 885 887 898 906 946 979 1039 1120 1134 1139
## [10945] 1195 1203 1208 1245 1312 1317 1344 1346 1397 1426 1434 1483
## [10957] 1486 1498 1514 1555 1562 1567 1624 1629 1712 1725 1734 1813
## [10969] 1876 1931 1983 1992 2035 2040 2090 2091 2244 2252 2256 2268
## [10981] 2274 2279 2286 2290 2297 2310 2319 2324 2445 2480 2481 2575
## [10993] 2648 2723 2761 3211 3345 3442 3600 3681 3686 3690 3809 3824
## [11005] 3857 3915 3937 3942 4214 4229 4253 4274 4282 4327 4335 4344
## [11017] 4351 4398 4404 4563 4572 4594 4608 4620 4638 4731 4735 4751
## [11029] 4760 4776 4784 4840 4842 4844 4918 4926 4931 4976 4977 4988
## [11041] 4991 5003 5119 5149 5156 5199 5209 5223 5226 5235 5260 5265
## [11053] 5388 5416 5446 5449 5460 5461 5549 5563 5584 5590 5716 5729
## [11065] 5756 5855 5870 5880 5907 6083 6092 6094 6096 6143 6239 6251
## [11077] 6255 6263 6287 6328 6364 6373 6388 6406 6410 6521 6547 6552
## [11089] 6821 6862 6869 6879 6927 6938 7056 7076 7079 7132 7152 7179
## [11101] 7186 7223 7326 7337 7345 7363 7365 7492 7493 7498 7500 7523
## [11113] 7525 7537 7747 7792 7897 7933 8009 8039 8047 8133 8154 8234
## [11125] 8238 8264 8269 8366 8367 8370 8395 8482 8504 8521 8548 8555
## [11137] 8639 8680 8684 8763 8791 8808 8880 8890 8907 8969 9035 9160
## [11149] 9191 9262 9274 9281 9366 9367 9368 9431 9451 9503 9510 9568
## [11161] 9609 9610 9678 9684 9691 9707 9783 9788 9887 9918 10005 10032
## [11173] 10130 10326 10330 10349 10359 10436 10446 10504 10506 10527 10534 10608
## [11185] 10632 10683 10702 10721 10785 10806 10813 10833 10925 10930 10957 11025
## [11197] 11045 11046 11052 11069 11071 11085 11175 11183 11194 11206 11224 11307
## [11209] 11323 11338 11402 11411 11431 11434 11491 11534 11536 11585 11609 11688
## [11221] 11697 11710 11721 11726 11776 11797 11800 11804 11852 11859 11874 11883
## [11233] 11885 11939 11942 11959 12038 12042 12064 12119 12147 12158 12163 12273
## [11245] 12281 12285 12290 12294 12298 12424 12468 12579 12601 12728 12730 12732
## [11257] 12769 12797 12862 13006 13013 13019 13128 13138 13188 13285 13303 13318
## [11269] 13456 13482 13595 13631 13788 13800 13806 13823 13837 13949 13952 13988
## [11281] 13998 14001 14118 14147 14153 14173 14179 14184 14187 14276 14282 14290
## [11293] 14310 14329 14333 14417 14444 14448 14497 14500 14504 14514 14530 14594
## [11305] 14613 14644 14647 14651 14700 14715 14731 14810 14816 14834 14851 14907
## [11317] 14932 14996 14997 15002 15009 15022 15027 15133 15162 15249 15273 15308
## [11329] 15409 15418 15479 15601 15608 15630 15632 15654 15674 15675 15753 15771
## [11341] 15786 15880 15914 16019 16172 16213 16273 16322 16399 16483 16487 16518
## [11353] 16521 16536 16694 16713 16848 16851 16869 16877 16954 16963 16971 17082
## [11365] 17093 17113 17202 17206 17221 17239 17243 17348 17354 17357 17366 17368
## [11377] 17455 17471 17474 17481 17483 17528 17530 17544 17548 17550 17630 17641
## [11389] 17648 17649 17653 17719 17724 17730 17733 17792 17796 17802 17808 17816
## [11401] 17859 17868 17874 17883 17922 17932 17943 17950 18024 18031 18051 18066
## [11413] 18067 18145 18150 18156 18163 18182 18184 18186 18267 18276 18278 18300
## [11425] 18310 18313 18314 18402 18422 18424 18427 18437 18440 18538 18540 18545
## [11437] 18559 18592 18596 18597 18718 18729 18803 18807 18897 18904 18955 18973
## [11449] 18982 18990 19011 19056 19064 19073 19180 19315 19488 19522 19531 19602
## [11461] 19615 19625 19684 19716 19729 19734 19843 19855 19927 19936 19980 19995
## [11473] 20061 20070 20127 20133 20146 20163 20214 20225 20237 20318 20319 20379
## [11485] 20421 20485 20514 20552 20557 20610 20629 20677 20679 20737 20756 20760
## [11497] 20763 20764 20765 20772 20774 20822 20831 20873 20941 20954 20962 21005
## [11509] 21020 21077 21081 21089 21134 21135 21182 21191 21196 21203 21243 21257
## [11521] 21265 21297 21323 21369 21376 21404 21463 21465 21466 21468 21474 21475
## [11533] 21477 21530 21531 21533 21536 21537 21540 21545 21550 21552 21588 21591
## [11545] 21596 21607 21639 21644 21652 21694 21700 21715 21717 21789 21791 21852
## [11557] 21857 21914 21916 21931 21967 21972 22016 22028 22029 22086 22141 22144
## [11569] 22152 22161 22202 22204 22214 22219 22223 22274 22279 22284 22286 22334
## [11581] 22340 22347 22356 22410 22413 22415 22425 22432 22494 22499 22503 22506
## [11593] 22516 22525 22531 22532 22629 22635 22660 22775 22789 22811 22818 22944
## [11605] 22971 22981 23076 23079 23084 23098 23105 23106 23187 23189 23202 23205
## [11617] 23207 23277 23327 23430 23481 23622 23739 23751 23810 23865 23872 24270
## [11629] 24353 24499 24528 24662 24667 24763 24777 24787 24788 24887 24914 24919
## [11641] 25069 25132 25135 25143 25156 25337 25351 25377 25394 25605 25658 25898
## [11653] 25908 25923 26076 26127 26132 26400 26458 26527 26729 26743 26754 26952
## [11665] 26953 27073 27109 27136 27198 27279 27287 27371 27385 27478 27497 27511
## [11677] 27526 27601 27610 27614 27631 27638 27641 27643 27664 27671 27824 27850
## [11689] 27973 27995 28003 28008 28118 28122 28155 28288 28295 28452 28453 28454
## [11701] 28621 28623 28624 28626 28627 28629 28774 28776 28778 28902 28904 28905
## [11713] 28906 28990 28991 28992 28993 29117 29118 29120 29121 29259 29260 29389
## [11725] 29390 29391 29392 29523 29524 29528 29650 29651 29785 29912 29914 30013
## [11737] 30014 30017 30018 30019 30020 30126 30131 30241 30242 30244 30246 30379
## [11749] 30382 30529 30681 30683 30845 30848 30850 31021 31024 31314 31315 31465
## [11761] 31578 31685 31686 31768 31769 31770 31771 31828 31829 31898 31899 32003
## [11773] 32005 32107 32109 32111 32112 32292 32293 32295 32520 32521 32524 32525
## [11785] 32531 32733 32737 32739 32949 32950 32955 32956 33161 33165 33166 33170
## [11797] 33512 33513 33514 33516 33517 33682 33683 33684 33685 33686 33688 33689
## [11809] 33780 33782 34103 35084 35085 35089 35324 35327 35517 391 1343 2272
## [11821] 2414 2617 2928 3059 3129 4633 7039 7110 7201 7519 7772 8024
## [11833] 8220 8226 8338 8382 22941 22953 23071 23450 23459 23489 24247 24503
## [11845] 24642 25125 25363 25918 26725 4285 5257 10364 10587 10809 10896 10912
## [11857] 11020 11024 11090 11193 11318 11518 11538 11943 12248 12313 12417 12570
## [11869] 12709 13117 13276 13613 13778 13781 13793 13825 13965 14115 14593 14895
## [11881] 15107 15158 15232 15458 15578 15649 15854 16506 16726 17329 19193 19293
## [11893] 19691 19767 19782 19842 19913 32529 34104 34111 20 91 104 291
## [11905] 310 383 392 472 485 491 499 552 561 689 705 786
## [11917] 808 809 882 904 940 974 1037 1057 1122 1143 1200 1244
## [11929] 1315 1340 1710 1865 1937 2076 2243 2276 2479 2641 2842 2857
## [11941] 2919 2925 3046 3064 3130 3148 3150 3191 3204 3259 3358 3445
## [11953] 3601 3695 3767 3825 3930 4205 4280 4348 4377 4565 4911 5121
## [11965] 5214 5394 5512 5686 5705 5833 5834 6060 6068 6084 6131 6136
## [11977] 6222 6279 6285 6332 6351 6412 6526 6538 6558 6823 7044 7114
## [11989] 7155 7228 7463 7532 7719 7728 7785 8000 8046 8267 8343 8388
## [12001] 8416 8485 8525 8632 8638 8663 8682 8751 8752 8761 8789 8859
## [12013] 8874 8965 9025 9148 9563 9666 10887 11037 11287 11380 11492 11844
## [12025] 11922 12021 12128 12271 12396 12715 29 108 897 981 1032 1221
## [12037] 1227 1318 1940 2084 2260 3261 3329 3707 3832 4294 4566 4602
## [12049] 4621 4718 5691 6066 6250 6344 9153 10296 10790 11293 12548 12680
## [12061] 12843 13110 13419 14271 14431 14487 14621 14696 14793 14900 16295 18688
## [12073] 18699 19051 20137 20282 20288 20302 20396 20400 20426 20504 20735 20809
## [12085] 20812 20824 22512 22614 22748 22916 23052 23420 23736 24253 24343 24358
## [12097] 24533 24665 25304 25559 25606 25654 25874 25888 26087 26114 26537 26694
## [12109] 26770 28110 28142 28249 28276 28450 28451 28617 28620 28628 29522 29842
## [12121] 29910 29911 29913 30011 30012 30016 30127 30129 30130 30240 30245 30247
## [12133] 30526 30528 30685 30686 30687 30842 30843 30844 30846 30852 31017 31019
## [12145] 31022 31023 31026 31308 31312 31580 31830 32110 32290 32294 32296 32519
## [12157] 32523 32736 32951 32952 32953 33157 33687 33783 34112 34329 34333 34334
## [12169] 34336 34583 34588 34589 34590 34591 34592 34902 34904 35086 35087 35088
## [12181] 35092 35095 35325 35329 35332 35514 13156 13602 13939 14128 14421 14619
## [12193] 15258 15387 15633 15729 16516 489 1222 1235 1405 1493 2031 2096
## [12205] 2108 2109 2210 3292 3667 3674 4583 4836 4984 4999 5147 5152
## [12217] 5254 5261 5455 5464 6582 6890 6893 6904 7350 7503 8016 8775
## [12229] 8785 9449 9773 9782 10009 10631 10718 11028 11079 12067 14722 14733
## [12241] 14925 16319 16503 16700 17186 17779 18030 18172 19054 19268 19700 20217
## [12253] 20310 20866 22793 23176 23180 24266 24481 24602 25041 25057 25126 25362
## [12265] 25592 25635 25666 25895 25899 26370 26408 27097 27505 27516 27651 27660
## [12277] 28263 28625 28907 29116 29119 29648 29915 30010 30015 30128 30376 30380
## [12289] 30525 30527 30682 31020 31311 31461 31579 31687 32004 32006 32297 32526
## [12301] 32527 32530 32734 32735 32943 32944 32948 33158 33160 33169 33692 34330
## [12313] 34903 35091 35097 35330 1327 1560 2208 2539 2630 3050 3053 3142
## [12325] 3187 6851 6946 7048 7161 7329 7330 8010 8352 8363 8374 8401
## [12337] 8481 8535 8794 8885 9141 9142 9187 9263 9326 9338 9426 9562
## [12349] 9683 10261 10280 10309 10324 10798 10825 10897 10898 10903 10940 11031
## [12361] 11036 11064 11171 11179 11286 11603 11690 11927 13736 13954 14324 15226
## [12373] 16276 16364 16372 16455 16831 16932 16953 17061 17063 17089 17183 17192
## [12385] 17217 17313 17324 17336 17338 17428 17456 17461 17515 17519 17619 17626
## [12397] 17691 17693 17778 17782 17845 17909 18028 18138 18273 18382 18387 18388
## [12409] 18503 18505 18584 18587 18773 18788 20222 20863 22765 23268 23415 23628
## [12421] 23632 23756 23766 23778 23830 23860 24112 24158 24167 24242 24342 24484
## [12433] 24487 24639 24736 24882 24890 25052 25063 25068 25097 25127 25310 25345
## [12445] 25563 25568 25863 25864 26072 26237 26247 26473 26676 26682 26948 26951
## [12457] 26955 27066 27133 27286 27369 27499 27606 27607 27618 27625 27802 27949
## [12469] 28618 28619 28622 28772 28773 28903 29115 29261 29393 29394 29395 29396
## [12481] 29525 29526 29527 29529 29649 29652 29786 30243 30847 33162 33163 33515
## [12493] 33518 33690 33693 33694 33775 33776 33777 33778 33781 34106 34108 34109
## [12505] 34110 34114 34327 34328 34331 34332 34335 34582 34584 34585 34587 34593
## [12517] 34716 34905 34906 35093 35096 35326 35335 35516 35518 5695 6564 9599
## [12529] 12563 12975 14302 20399 24133 26665 27636 29647 32108 34107 34113 1410
## [12541] 1432 1566 1626 1980 2209 2281 2283 2427 2717 3822 4240 4265
## [12553] 4929 5507 5683 6908 7175 7338 7341 8901 9341 9342 10029 10126
## [12565] 10272 10286 10307 11931 12050 12574 12610 12827 14170 14320 14440 14602
## [12577] 15470 15636 17299 17721 18124 18127 18142 18179 18259 18394 18802 20479
## [12589] 22631 35090 35328 2255 2425 2685 5142 5242 5395 5423 5431 6372
## [12601] 7196 7344 7511 7516 8520 10113 10819 11060 11176 11180 11314 12039
## [12613] 12049 12145 13774 15103 15255 15260 15284 15437 15464 15570 15621 15664
## [12625] 15743 15769 15876 15892 16187 16405 16716 16830 16842 17342 19155 19173
## [12637] 19258 19277 19307 19502 19611 19619 19703 19848 20118 20380 20476 20483
## [12649] 20825 21311 21410 22149 23304 23609 23799 23815 23833 24748 25099 25353
## [12661] 25360 25675 779 4364 4367 8360 9268 7189 7354 7759 9774 9860
## [12673] 11513 13930 23418 23630 23788 23878 24145 25678 25891 26421 26944 26950
## [12685] 19285 27998 28011 28775 29787 29841 35323 11412 28777 29788 30378 35511
## [12697] 16691 19726 13150 15242 7187 12253 19711 19719 7352 15121 13573 13947
## [12709] 19597 15878 16669 16819 17436 17437 35334 35515 20389 22264 25872 26425
## [12721] 26689 28293 28771 30377 30381 30524 30680 30684 30849 30851 31018 31025
## [12733] 31307 31309 31310 31313 31462 31463 31464 31466 31467 31581 31831 31897
## [12745] 32289 32291 32517 32518 32522 32528 32732 32738 32740 32741 32742 32945
## [12757] 32946 32947 32954 33159 33164 33167 33168 33691 33779 34105 34586 34901
## [12769] 35094 35322 35331 35333 35512 35513 281 531 869 1131 1220 1345
## [12781] 1512 1807 1863 1914 1966 2025 2107 2694 2732 2952 3074 3145
## [12793] 3290 3351 3440 3839 3935 4156 4990 5517 6105 6296 6314 6315
## [12805] 6383 6387 6424 6640 6881 7024 7849 7937 7949 7967 8063 8165
## [12817] 8174 8287 8317 8336 8742 9221 9305 9402 9462 9540 10537 10660
## [12829] 10671 10677 10760 11476 11560 11566 11662 11828 11908 12819 12924 12927
## [12841] 13346 13385 13494 13521 13534 13691 14052 14349 14453 14549 14567 14671
## [12853] 14750 14760 14858 14958 14959 15038 15064 15086 15195 15352 15501 15947
## [12865] 15977 16125 16241 16335 16340 16526 16619 17531 17738 18349 18931 26193
## [12877] 26194 26416 26544 26610 26779 27157 27757 29831 30204 30495 30496 30641
## [12889] 30782 30967 31426 31554 31817 31977 32077 32080 32082 32224 32657 33084
## [12901] 33085 33635 33924 34022 34277 34690 34860 35459 40 48 56 119
## [12913] 120 126 137 140 157 170 181 253 254 275 360 369
## [12925] 425 439 508 524 589 597 651 665 667 743 753 847
## [12937] 865 874 938 942 952 958 1038 1113 1206 1310 1320 2030
## [12949] 2234 2242 2266 2547 2578 2599 2619 2634 2638 2658 2666 2676
## [12961] 2681 2718 2725 3054 3249 3338 3349 3407 3431 3629 3630 3631
## [12973] 3658 3692 3812 3844 3918 3922 4017 4035 4056 4061 4072 4085
## [12985] 4091 4121 4133 4140 4147 4366 4376 4382 4559 4609 4631 4726
## [12997] 4736 4766 4825 4873 4883 4887 4890 4970 4994 5007 5102 5252
## [13009] 5355 5372 5521 5575 5690 5699 5710 5753 5840 5869 5894 6058
## [13021] 6108 6124 6290 6310 6342 6367 6393 6626 6629 6819 6859 6875
## [13033] 6914 6963 7017 7022 7153 7205 7233 7386 7427 7438 7490 7515
## [13045] 7651 7692 7801 7814 7965 7971 8076 8156 8189 8200 8309 8315
## [13057] 8460 8589 8727 8825 8945 9018 9060 9062 9076 9081 9101 9113
## [13069] 9116 9205 9223 9293 9297 9311 9382 9388 9455 9472 9535 9543
## [13081] 9634 9659 9715 9806 10164 10171 10183 10213 10217 10223 10228 10234
## [13093] 10462 10542 10548 10635 10741 10867 10977 11109 11242 11248 11361 11443
## [13105] 11479 11580 11648 11670 11752 11829 11892 11911 11963 11982 11988 12083
## [13117] 12108 12208 12222 12317 12383 12386 12475 12496 12502 12515 12531 12613
## [13129] 12658 12788 12849 12882 12906 12937 12947 13042 13050 13064 13071 13083
## [13141] 13193 13213 13223 13224 13248 13252 13361 13368 13381 13388 13411 13486
## [13153] 13511 13652 13677 13724 13844 13884 13904 14048 16135 16267 16337 16344
## [13165] 16346 34855 1217 1860 1910 1916 5849 5862 6892 7012 17986 18115
## [13177] 18251 18372 18488 18590 18675 18748 18934 19113 19304 20439 20787 20910
## [13189] 20979 21099 21101 21112 21119 21156 21407 21729 21890 21955 22068 22176
## [13201] 22186 22303 22683 22707 22835 22856 22901 22994 23011 23046 23118 23240
## [13213] 23261 23369 23370 23378 23402 23512 23526 23542 23562 23590 23659 23674
## [13225] 23931 24031 24053 24178 24211 24410 24559 24596 24680 24702 24815 24833
## [13237] 24862 25009 25173 25202 25229 25269 25284 25427 25518 25540 25775 25793
## [13249] 25823 26204 26232 26296 26398 26440 26535 26549 26578 26580 26591 26616
## [13261] 26634 26662 27004 27008 27045 27773 27879 27881 27885 27892 28037 28055
## [13273] 28176 28179 28198 28232 28379 28380 28511 32218 262 744 1746 3363
## [13285] 3687 3817 3819 4368 4894 4967 5371 7828 7867 9096 9109 9964
## [13297] 10552 10965 11133 12636 12737 12811 12853 13087 13238 13395 13704 14009
## [13309] 14212 14356 14472 14478 14560 14569 14674 14685 14753 15512 15730 15989
## [13321] 15996 16100 17279 17410 17417 17599 17655 17665 17762 18735 18941 19287
## [13333] 23344 23524 25449 25532 25694 25831 26151 26188 26219 26595 27001 27910
## [13345] 28053 32222 32886 33080 33081 33293 34276 34495 34497 35063 149 154
## [13357] 155 184 286 367 448 528 674 763 841 872 980 1231
## [13369] 1326 1429 1497 1638 1744 1747 1804 1812 1814 1866 1875 1913
## [13381] 1967 2032 2080 2250 2289 2691 2735 2766 2775 2780 2832 2860
## [13393] 2926 2946 2954 3045 3069 3078 3197 3269 3337 3433 3632 3633
## [13405] 3666 3710 3834 3924 4028 4064 4126 4135 4164 4184 4378 4385
## [13417] 4576 4580 4586 4628 4643 4770 4822 5001 5097 5243 5354 5587
## [13429] 5594 5730 5743 5755 5889 5901 6138 6325 6416 6642 6855 6883
## [13441] 6899 6933 7026 7655 7873 7939 7988 8105 8158 8211 8280 8331
## [13453] 8421 8426 8467 8560 8626 8704 8747 8833 8840 8842 8911 9009
## [13465] 9065 9092 9112 10141 10158 10245 10252 10484 1126 1789 3256 5761
## [13477] 5905 6122 6135 7869 11741 14775 18832 18916 19052 19762 19968 20093
## [13489] 20168 20190 20206 20270 20271 20336 20700 20791 20800 20838 20859 21632
## [13501] 21663 21720 21835 22165 22248 22373 22388 22434 22473 22567 22582 22693
## [13513] 22699 22721 22862 22872 23530 23551 23596 23695 23724 23924 24023 24078
## [13525] 24191 24199 24283 24308 24309 24316 24322 24408 24561 25517 25536 25812
## [13537] 25835 26153 26158 26221 26229 26253 26280 26337 26380 26464 26526 26589
## [13549] 26653 28063 28172 28220 28376 28377 28381 28382 28383 28507 28508 28509
## [13561] 28707 29472 29604 29605 29606 29607 29745 29746 29748 29749 29830 29896
## [13573] 29977 29978 29980 30091 30093 30201 30334 30336 30492 30494 30638 30639
## [13585] 30778 30780 30781 30961 30962 30965 30966 31152 31153 31155 31257 31886
## [13597] 32219 32223 32462 32463 32468 32469 32471 32658 32661 34491 34496 34851
## [13609] 35276 33294 659 2028 2235 2236 2321 2580 2699 3714 3724 3926
## [13621] 4577 6142 6317 6322 6330 6394 6420 6612 6903 6911 8206 9085
## [13633] 9401 9656 13403 13527 14577 14761 14856 14961 15035 15076 15744 15768
## [13645] 15999 16146 16149 17244 17283 17425 17520 17964 18595 22555 24021 24057
## [13657] 24402 24415 24448 24698 24924 25161 26327 26338 26849 27552 28510 28708
## [13669] 28843 28958 29085 29087 29979 30090 31256 31421 31423 31654 32461 32470
## [13681] 32654 33488 34019 35064 35269 35449 5206 5335 5751 5853 6072 6295
## [13693] 6336 6621 6805 6970 6976 7159 7381 7494 7643 7947 7952 8069
## [13705] 8082 8183 8278 8445 8582 9072 9207 9537 9639 9726 9813 9826
## [13717] 9945 10055 10155 10654 10663 11817 11970 12073 12085 12086 12092 12199
## [13729] 12205 12322 12343 12350 12360 12484 12485 12504 13657 13860 14037 14047
## [13741] 4875 5863 6353 8319 11639 12942 1117 2304 2565 2830 3699 4832
## [13753] 4889 6793 9633 10145 12003 12173 13509 13682 17413 21164 2420 2625
## [13765] 5092 5228 5357 5359 5526 5841 5850 7193 7526 12192 12233 12329
## [13777] 13530 13845 13853 14013 14204 14745 15066 15176 15179 15321 15325 15518
## [13789] 15538 15737 15740 15747 15756 15939 15955 15958 15971 16097 16108 16114
## [13801] 16144 16154 16237 16345 16523 16632 16762 16907 16910 16985 16996 17132
## [13813] 17579 17965 17999 18073 18204 18224 18239 18315 18324 18326 18354 18463
## [13825] 18482 19045 19269 19271 19282 19300 19314 19397 19401 19455 19578 19709
## [13837] 19788 19955 20341 20445 20521 20579 20692 21809 22057 22166 22378 22385
## [13849] 22671 23001 23355 23520 23566 23585 23671 23696 24804 25167 25196 25544
## [13861] 25786 26785 27707 28841 28844 29086 29212 29214 29347 29349 29350 29747
## [13873] 31552 31818 33297 33298 33483 34015 4103 11465 14451 14764 22447 25466
## [13885] 25488 25722 25782 26174 26386 26601 26620 26846 26969 27013 27023 27149
## [13897] 27225 27348 27354 27417 27556 27760 28048 28075 28378 28710 28957 29088
## [13909] 29213 29348 9939 11766 12667 12824 12842 12877 12888 12938 15197 15331
## [13921] 15950 17026 17513 19424 20280 20335 22710 22885 23677 25687 25726 25747
## [13933] 25759 26836 26997 27041 27266 28045 29895 31975 32081 33634 34270 35278
## [13945] 35458 3706 5220 5741 7137 7138 7143 7150 7171 7176 7180 7188
## [13957] 7379 7397 8289 8697 9015 12345 12374 12510 15030 15488 16993 17006
## [13969] 17018 19399 19410 19430 19877 21103 21273 21292 21358 22041 22064 28842
## [13981] 28959 33077 14681 20331 20360 3336 4743 6360 6409 15165 15319 15334
## [13993] 15492 15516 15732 15921 15929 15991 16233 8691 17122 19302 20458 9643
## [14005] 9650 21355 19109 19125 19280 19301 19418 19690 20173 20723 21807 22251
## [14017] 24444 24586 26217 26456 27228 28512 28513 28709 30092 30202 30203 30333
## [14029] 30335 30337 30491 30493 30640 30777 30779 30963 30964 31154 31156 31258
## [14041] 31259 31422 31424 31425 31553 31746 31816 31973 31974 31976 32076 32078
## [14053] 32079 32215 32216 32217 32220 32221 32459 32460 32464 32465 32466 32467
## [14065] 32472 32652 32653 32655 32656 32659 32660 32884 32885 32887 32888 32889
## [14077] 33076 33078 33079 33082 33083 33295 33296 33299 33300 33301 33484 33485
## [14089] 33486 33487 33636 33637 33638 33639 33919 33920 33921 33922 33923 34013
## [14101] 34014 34016 34017 34018 34020 34021 34271 34272 34273 34274 34275 34490
## [14113] 34492 34493 34494 34498 34499 34689 34852 34853 34854 34856 34857 34858
## [14125] 34859 35058 35059 35060 35061 35062 35065 35066 35067 35270 35271 35272
## [14137] 35273 35274 35275 35277 35450 35451 35452 35453 35454 35455 35456 35457
## [14149] 282 848 7955 8104 8207 8443 10668 12876 13094 13233 13404 13548
## [14161] 13720 13900 14053 14239 14363 18819 45 53 57 122 125 131
## [14173] 132 138 158 164 244 260 345 372 426 592 654 745
## [14185] 766 834 954 1109 1480 1515 1552 1556 1565 1619 1620 1621
## [14197] 1628 1635 1679 1788 1911 2294 2552 2560 2579 2582 2605 3254
## [14209] 3635 4018 4022 4029 4036 4043 4048 4067 4100 4130 4136 4151
## [14221] 4170 4179 4384 4732 4879 4961 5107 5259 5361 5381 5572 5698
## [14233] 6070 6335 6610 6615 6800 6810 6818 6828 6898 6902 6910 6937
## [14245] 6961 6985 6991 7009 7141 7224 7380 7445 7458 7466 7489 7531
## [14257] 7533 7539 7677 7703 7708 7837 7874 7877 7987 8061 8077 8107
## [14269] 8167 8204 8284 8308 8329 8430 8453 8455 8457 8469 8556 8569
## [14281] 8594 8609 8618 8696 8716 8718 8740 8815 8851 8912 8916 8943
## [14293] 8993 8995 9069 9615 9618 9619 9622 9638 9944 9956 10157 10169
## [14305] 10177 10191 10196 10201 10204 10222 10233 10395 10404 10472 10483 10657
## [14317] 10659 10758 10858 10985 11002 11124 11132 11140 11144 11253 11256 11258
## [14329] 11273 11349 11360 11363 11478 11582 11634 11658 11682 11813 11837 11890
## [14341] 11909 11913 11986 12005 12007 12096 12113 12116 12207 12230 12357 12486
## [14353] 12783 12887 12941 13060 13072 13079 13202 13203 13365 13374 13408 13503
## [14365] 13514 13522 13665 13683 13729 13841 13872 13877 14007 14049 14192 14205
## [14377] 14211 14221 14225 14232 14243 14247 14256 14350 14354 14364 14463 14562
## [14389] 14579 14652 14772 14876 14973 15052 15167 15215 15378 15565 15712 15726
## [14401] 15949 15961 15970 15990 15998 16006 16093 16123 16250 16432 16435 16491
## [14413] 16507 16517 16595 16660 16738 16781 16912 17004 17010 17163 17247 17255
## [14425] 17380 17390 17507 17602 17603 17657 17685 17745 17749 17760 17841 17905
## [14437] 18014 18087 18582 18850 18949 19033 19116 19244 19447 19553 19668 19823
## [14449] 19898 19967 20012 20030 20044 20443 20695 20731 20915 21392 21484 21488
## [14461] 21490 21491 21668 21891 21949 21953 21954 22006 22007 22056 22061 22234
## [14473] 22299 22307 22379 22438 22455 22568 22703 22708 22863 23023 23027 23119
## [14485] 23131 23134 23139 23140 23152 23231 23238 23263 23346 23384 23408 23514
## [14497] 23552 23574 23576 23655 23689 23706 23898 23908 23923 23927 24014 24018
## [14509] 24196 24209 24280 24282 24406 24412 24420 24438 24558 24562 24577 24593
## [14521] 24674 24683 24693 24696 24798 24807 24817 24820 24925 24926 24966 24973
## [14533] 24979 25004 25018 25172 25176 25190 25191 25200 25208 25220 25227 25235
## [14545] 25251 25268 25272 25450 25496 25508 25741 25742 25795 26144 26167 26172
## [14557] 26177 26182 26202 26234 26254 26317 26328 26362 26381 26512 26560 26563
## [14569] 26592 26596 26626 26775 26786 26807 26809 26861 26958 26983 26986 27022
## [14581] 27131 27261 27277 27295 27305 27313 27315 27429 27454 27457 27468 27561
## [14593] 27689 27703 27709 27730 27737 27743 27783 27877 27882 27886 27911 28015
## [14605] 28018 28178 28187 28217 28395 28396 28398 28400 28525 28526 28528 28529
## [14617] 28718 28719 28720 28723 28854 28855 28857 28858 28963 28966 28968 29072
## [14629] 29073 29077 29223 29225 29226 29228 29359 29361 29363 29365 29366 29481
## [14641] 29484 29485 29486 29487 29614 29615 29616 29617 29622 29755 29756 29757
## [14653] 29758 29760 30105 30210 30215 30341 30344 30347 30630 30792 31245 31427
## [14665] 31432 31987 32056 32203 32206 32433 32680 32683 32864 32871 33098 33276
## [14677] 33372 33469 33472 33620 33624 33626 33830 34034 34035 34835 35253 35469
## [14689] 172 968 1688 1856 3289 3362 3435 3648 3830 3858 4181 4569
## [14701] 5835 6347 6423 6618 6620 6632 6983 7210 7392 7477 7487 7650
## [14713] 7662 7697 8423 8612 18836 20529 20637 20652 20718 22679 22684 22715
## [14725] 22890 23010 23502 23529 23563 23652 23678 23885 23905 23934 24019 24227
## [14737] 24829 24971 25241 25832 26197 26442 26617 31984 5508 5537 5692 9083
## [14749] 10216 10452 11358 11373 11481 12747 13495 13689 13902 14572 14940 16141
## [14761] 16148 16265 16509 16538 16647 18765 19664 267 653 759 843 850
## [14773] 870 873 949 962 967 1044 1050 1054 1128 1213 1223 1238
## [14785] 1323 1336 1425 1503 1509 1631 1693 1732 1736 1786 1793 1802
## [14797] 1810 1859 1918 1972 2026 2093 2251 2254 2326 2416 2660 2682
## [14809] 2714 2726 2782 2841 2850 2935 2937 2938 3056 3067 3077 3138
## [14821] 3140 3198 3209 3265 3267 3274 3334 3348 3434 3636 3672 3715
## [14833] 3716 3835 3843 3927 4065 4073 4078 4111 4127 4128 4159 4165
## [14845] 4185 4387 4392 4393 4405 4579 4587 4590 4614 4727 4737 4767
## [14857] 4768 4824 4888 4965 4980 4996 5093 5100 5108 5231 5341 5365
## [14869] 5369 5708 5720 5725 5736 5760 5845 5854 5857 5860 5867 5875
## [14881] 5878 5883 5891 6082 6093 6098 6104 6106 6111 6114 6121 6298
## [14893] 6300 6301 6302 6305 6309 6320 6365 6384 6400 6408 6619 6644
## [14905] 6844 6847 6854 6860 6874 6880 6953 7007 7014 7164 7217 7403
## [14917] 7426 7473 7497 7658 7664 7675 7682 7684 7809 7816 7831 7833
## [14929] 7845 7872 7945 7951 7963 7982 8070 8186 8291 8306 8311 8429
## [14941] 8436 8439 8584 8600 8607 8707 8722 8830 8836 8923 8926 8985
## [14953] 8991 9006 9012 9095 9208 9224 9296 9539 9649 10773 10882 10999
## [14965] 11282 11374 11488 11678 11756 12527 12664 12818 12870 12922 12925 12957
## [14977] 13077 13227 13386 13537 13692 13885 14059 14229 14357 14358 14469 14565
## [14989] 14678 14768 14868 14956 15061 15083 15190 15212 15349 15531 15549 15700
## [15001] 15710 15719 15943 15967 15995 16000 16129 16153 16246 16255 16341 16441
## [15013] 16515 16635 16770 17288 17592 17753 17833 17901 17998 18093 18235 18345
## [15025] 18472 18573 18660 18759 18835 18923 19031 19114 19232 19568 19662 19792
## [15037] 19884 19885 19959 20025 20096 20199 20277 20351 20536 20609 20715 20804
## [15049] 20805 20844 20847 20851 20918 20920 20925 20981 21106 21174 21242 21283
## [15061] 21440 21489 21495 21579 21621 21666 21711 21762 21825 9473 9541 10163
## [15073] 10647 10665 10734 10770 10846 10849 11463 11633 18815 19135 20365 21498
## [15085] 21768 21821 22459 22578 22857 23539 23887 24025 24285 25170 25523 25527
## [15097] 26244 26625 29987 30342 30480 30952 31246 31428 32207 32437 32439 32679
## [15109] 32865 33279 34695 34834 248 746 2021 2038 2238 4720 4724 4905
## [15121] 6840 7826 8616 8811 8915 9104 9202 9644 10054 10071 10194 11888
## [15133] 11916 13214 13225 14344 14586 14744 14954 15344 15372 15374 15554 17031
## [15145] 18242 18246 18365 18367 18451 19208 19222 22902 24456 24687 24695 25288
## [15157] 25690 25698 25723 25763 26611 26780 26992 27054 27213 27459 27546 27565
## [15169] 27864 27893 28207 28213 28394 28721 28725 28964 28965 29074 29076 29079
## [15181] 29618 29892 31547 32441 32685 32867 32873 33101 33102 33274 33275 33277
## [15193] 33827 6623 10168 12650 13556 14199 2916 9288 22670 28533 33826 351
## [15205] 1482 1491 1495 1508 1561 1617 2610 4092 4874 4881 6616 6968
## [15217] 9292 10049 10976 12880 13499 13543 19871 35474 2697 7369 7470 7670
## [15229] 12197 13846 14019 15317 15698 15714 15926 19241 20632 20659 25179 25440
## [15241] 25545 8300 18851 8990 25688 26287 26782 12881 23122 26638 28014 8173
## [15253] 3153 3702 3705 8193 10474 14039 15341 17049 18378 21270 21277 21946
## [15265] 10466 32059 6382 16629 16789 17024 17155 17272 17399 17505 17680 17683
## [15277] 14368 35475 22247 24451 24584 24853 24990 25279 25733 25818 26163 26212
## [15289] 26314 26471 26555 26569 26575 26657 26816 26864 26999 27002 27033 27150
## [15301] 27255 27301 27351 27473 27476 27564 27593 27723 27731 27751 27789 27796
## [15313] 27920 28089 28189 28190 28191 28221 28233 28238 28397 28399 28401 28524
## [15325] 28527 28530 28531 28532 28722 28724 28856 28859 28967 28969 29075 29078
## [15337] 29222 29224 29227 29358 29360 29362 29364 29482 29483 29619 29620 29621
## [15349] 29759 29833 29890 29891 29988 29989 29990 29991 30103 30104 30106 30107
## [15361] 30108 30209 30211 30212 30213 30214 30216 30343 30345 30346 30348 30349
## [15373] 30350 30351 30352 30479 30481 30482 30483 30484 30485 30625 30626 30627
## [15385] 30628 30629 30791 30793 30794 30946 30947 30948 30949 30950 30951 30953
## [15397] 31142 31143 31144 31145 31146 31241 31242 31243 31244 31247 31429 31430
## [15409] 31431 31543 31544 31545 31546 31659 31660 31661 31662 31738 31739 31740
## [15421] 31741 31808 31809 31810 31811 31812 31813 31880 31881 31985 31986 32054
## [15433] 32055 32057 32058 32201 32202 32204 32205 32434 32435 32436 32438 32440
## [15445] 32442 32678 32681 32682 32684 32863 32866 32868 32869 32870 32872 33096
## [15457] 33097 33099 33100 33273 33278 33280 33373 33374 33470 33471 33473 33621
## [15469] 33622 33623 33625 33823 33824 33825 33828 33829 34033 34036 34037 34038
## [15481] 34039 34040 34041 34222 34223 34224 34225 34226 34227 34228 34229 34230
## [15493] 34231 34510 34511 34512 34513 34514 34515 34516 34693 34694 34828 34829
## [15505] 34830 34831 34832 34833 34836 34837 35037 35038 35039 35040 35041 35042
## [15517] 35043 35044 35045 35250 35251 35252 35254 35255 35256 35257 35258 35259
## [15529] 35468 35470 35471 35472 35473 35476 35477 314 393 486 554 629
## [15541] 1081 1285 1377 1465 1530 1928 2174 2395 2522 2992 2999 3162
## [15553] 4129 4500 4510 4536 6009 7689 7851 8075 8192 8326 9008 9308
## [15565] 9393 10655 10863 10993 11265 11356 11473 11575 11650 11743 11754 12102
## [15577] 12200 12212 12213 12506 12640 13377 13391 14606 14625 14728 14919 16192
## [15589] 16313 16398 21259 27982 32143 33004 33208 33549 34387 21 124 127
## [15601] 129 148 152 197 208 213 215 289 305 319 379 395
## [15613] 396 461 479 490 550 559 619 692 698 810 903 907
## [15625] 992 1025 1080 1104 1177 1184 1252 1259 1289 1356 1379 1448
## [15637] 1466 1538 1604 1648 1666 1769 1775 1825 1831 1847 1894 1901
## [15649] 1902 1926 1971 1975 2046 2064 2120 2128 2170 2189 2218 2219
## [15661] 2353 2354 2355 2385 2401 2488 2489 2490 2517 2521 2586 2604
## [15673] 2609 2613 2679 2704 2786 2822 2886 2907 2987 2988 3082 3090
## [15685] 3109 3114 3117 3158 3169 3179 3180 3220 3231 3241 3244 3314
## [15697] 3322 3399 3401 3483 3484 3485 3486 3515 3518 3572 3585 3614
## [15709] 3773 3774 3786 3803 3805 3880 3886 3900 3989 4007 4010 4026
## [15721] 4050 4098 4106 4116 4120 4143 4146 4149 4168 4173 4177 4189
## [15733] 4420 4435 4445 4456 4476 4508 4537 4539 4654 4677 4681 4701
## [15745] 4712 4792 4800 4850 4852 4912 4919 4936 5023 5026 5030 5035
## [15757] 5054 5068 5070 5073 5118 5125 5155 5278 5284 5286 5317 5392
## [15769] 5396 5407 5414 5420 5427 5443 5619 5628 5652 5674 5681 5766
## [15781] 5773 5815 5953 5955 5971 5976 5979 5983 6007 6026 6041 6219
## [15793] 6235 6265 6272 6275 6425 6448 6450 6472 6475 6482 6525 6534
## [15805] 6586 6595 6791 6815 6834 6878 6907 6919 6926 6943 6952 6964
## [15817] 6973 6977 6994 6995 6996 7008 7172 7195 7206 7220 7385 7400
## [15829] 7432 7443 7582 7601 7621 7629 7665 7679 7683 7695 7698 7796
## [15841] 7813 7821 7861 7870 7946 7975 8054 8073 8096 8169 8177 8302
## [15853] 8322 8458 8472 8597 8706 8823 8826 8847 8924 8927 8928 9001
## [15865] 9056 9078 9080 9100 9318 9400 9480 9523 9552 9556 9628 9657
## [15877] 9661 9728 9797 9843 9952 10042 10073 10136 10142 10146 10149 10159
## [15889] 10178 10210 10224 10248 10389 10407 10464 10475 10541 10554 10565 10633
## [15901] 10637 10640 10667 10735 10743 10761 10771 10842 10851 10876 10961 10991
## [15913] 10998 11004 11099 11111 11121 11129 11247 11275 11277 11343 11347 11350
## [15925] 11357 11444 11451 11467 11471 11544 11551 11558 11563 11570 11635 11652
## [15937] 11654 11663 11671 11738 11740 11748 11755 11761 11808 11818 11819 11821
## [15949] 11835 11897 11898 11907 11965 11983 11989 11995 12001 12074 12084 12090
## [15961] 12098 12174 12177 12217 12323 12335 12341 12356 12490 12497 12627 12629
## [15973] 12644 12663 12740 12781 12793 12892 12908 12912 12943 12958 13045 13049
## [15985] 13067 13069 13074 13088 13199 13207 13231 13243 13348 13376 13400 13510
## [15997] 13515 13529 13673 13680 13708 13869 14172 14215 14244 14386 14507 14525
## [16009] 14588 14616 14623 14695 14714 14720 14798 14801 14813 14836 14887 14926
## [16021] 14934 14989 14993 15001 15007 15008 15091 15096 15097 15115 15120 15151
## [16033] 15220 15250 15257 15270 15278 15410 15421 15439 15471 15572 15635 15677
## [16045] 15789 15804 15820 15925 15965 16051 16071 16075 16082 16162 16190 16204
## [16057] 16278 16291 16309 16378 16381 16390 16395 16396 16406 16415 16465 16474
## [16069] 16477 16549 16577 16578 16663 16667 16697 16698 16702 16813 16834 16947
## [16081] 17065 17077 17095 17200 17201 17220 17227 17301 17308 17326 17431 17446
## [16093] 17451 17460 17470 17555 17559 17564 17565 17569 17615 17618 17627 17636
## [16105] 17643 17706 17711 17717 17783 17790 17805 17855 17860 17862 17954 17955
## [16117] 17956 17959 17961 17963 17966 17967 18018 18020 18032 18052 18064 18121
## [16129] 18130 18134 18136 18146 18151 18160 18165 18177 18255 18261 18262 18264
## [16141] 18269 18299 18392 18396 18398 18414 18416 18419 18517 18518 18520 18523
## [16153] 18525 18527 18531 18532 18549 18617 18625 18643 18649 18686 18696 18704
## [16165] 18728 18793 18796 18858 18880 18889 18958 18979 18996 19075 19084 19089
## [16177] 19153 19154 19158 19190 19320 19324 19338 19345 19364 19468 19501 19504
## [16189] 19529 19599 19606 19610 19737 19749 19828 19841 19846 19849 19910 19912
## [16201] 19920 19922 19937 19974 19990 19996 19998 20000 20065 20075 20080 20124
## [16213] 20132 20135 20148 20152 20233 20238 20297 20298 20314 20315 20325 20390
## [16225] 20398 20401 20406 20411 20423 20427 20472 20487 20488 20492 20509 20511
## [16237] 20516 20517 20553 20565 20567 20620 20622 20624 20672 20738 20748 20753
## [16249] 20755 20757 20759 20767 20776 20816 20821 20823 20827 20871 20880 20885
## [16261] 20886 20892 20950 20953 21011 21021 21025 21070 21085 21087 21132 21138
## [16273] 21146 21179 21181 21194 21252 21256 21260 21298 21300 21314 21368 21372
## [16285] 21375 21378 21419 21424 21426 21428 21455 21464 21467 21523 21528 21538
## [16297] 21585 21595 21604 21641 21646 21686 21691 21739 21747 21787 21790 21802
## [16309] 21853 21855 21856 21909 21910 21915 21970 21977 21985 22015 22026 22079
## [16321] 22081 22096 22145 22150 22203 22205 22213 22220 22260 22262 22269 22270
## [16333] 22273 22276 22288 22322 22323 22327 22329 22336 22349 22354 22397 22402
## [16345] 22405 22414 22427 22480 22486 22493 22496 22511 22514 22520 22588 22591
## [16357] 22606 22608 22620 22626 22646 22745 22754 22763 22764 22780 22791 22919
## [16369] 22927 22936 22945 22947 22955 22976 22984 23065 23070 23082 23086 23092
## [16381] 23102 23107 23179 23186 23208 23272 23282 23299 23305 23308 23311 23322
## [16393] 23329 23437 23441 23455 23457 23472 23483 23607 23621 23624 23627 23631
## [16405] 23638 23754 23775 23794 23805 23826 23846 23867 23950 23952 23954 23988
## [16417] 24006 24011 24084 24094 24108 24144 24147 24154 24156 24157 24160 24260
## [16429] 24262 24264 24340 24346 24365 24491 24493 24497 24502 24518 24526 24530
## [16441] 24610 24615 24616 24632 24664 24666 24723 24739 24756 24767 24785 24874
## [16453] 24889 24903 24907 25028 25030 25042 25051 25061 25066 25074 25079 25087
## [16465] 25105 25153 25291 25295 25300 25303 25305 25312 25329 25330 25333 25339
## [16477] 25342 25352 25354 25358 25375 25390 25397 25575 25579 25589 25597 25604
## [16489] 25607 25621 25627 25646 25661 25669 25672 25680 25846 25853 25879 25882
## [16501] 25896 25901 25909 25920 25929 26142 26165 26173 26185 26191 26213 26214
## [16513] 26218 26228 26230 26272 26344 26397 26433 26491 26534 26686 26691 26727
## [16525] 26731 26735 26750 26757 26877 26883 26916 26918 26930 27062 27078 27079
## [16537] 27081 27096 27098 27101 27104 27110 27116 27139 27172 27177 27229 27232
## [16549] 27235 27359 27372 27378 27391 27392 27397 27400 27406 27485 27489 27502
## [16561] 27503 27506 27508 27512 27518 27524 27532 27539 27602 27615 27617 27620
## [16573] 27627 27652 27659 27663 27809 27830 27832 27849 27938 27940 27941 27948
## [16585] 27953 27962 27967 27970 27974 27980 27988 27991 28012 28109 28119 28121
## [16597] 28125 28133 28144 28255 28262 28267 28283 28299 28466 28467 28468 28614
## [16609] 28615 28786 28787 28914 28915 29011 29012 29013 29015 29016 29017 29144
## [16621] 29288 29290 29411 29412 29552 29553 29554 29678 29679 29680 29809 29849
## [16633] 29850 29930 29931 29932 30044 30045 30046 30047 30048 30147 30149 30271
## [16645] 30273 30409 30556 30557 30558 30560 30563 30564 30565 30711 30712 30713
## [16657] 30714 30880 30881 30882 31070 31074 31076 31349 31351 31352 31353 31356
## [16669] 31357 31487 31488 31492 31493 31600 31601 31603 31604 31605 31703 31704
## [16681] 31705 31780 31781 31782 31783 31784 31785 31844 31845 31846 31847 31918
## [16693] 31919 31922 31924 31927 32018 32019 32021 32022 32025 32131 32134 32135
## [16705] 32136 32138 32139 32140 32141 32334 32335 32336 32337 32342 32568 32570
## [16717] 32571 32572 32573 32575 32576 32578 32777 32778 32780 32782 32783 32784
## [16729] 32786 32788 32995 32996 32997 32998 33000 33001 33002 33202 33204 33206
## [16741] 33207 33543 33545 33547 33548 33718 33721 33722 33724 33725 33891 33893
## [16753] 33894 33897 33898 33899 33900 33901 34156 34158 34159 34160 34161 34162
## [16765] 34163 34164 34378 34379 34382 34383 34385 34386 34639 34640 34644 34645
## [16777] 34647 34703 34704 34705 34707 34708 34939 34940 34941 34942 34943 34944
## [16789] 34945 34950 34951 34952 35164 35165 35166 35167 35168 35170 35171 35364
## [16801] 35365 35366 35367 35368 35369 35370 35532 35533 35534 35535 35536 35537
## [16813] 139 4924 4925 5136 6247 6461 20382 20473 21014 21062 22505 22597
## [16825] 22737 22751 22782 22784 22803 22918 23053 23336 23423 23801 24100 24122
## [16837] 24249 24510 24630 24781 25321 25378 26470 32020 35172 4847 5429 5630
## [16849] 6038 7607 7635 7705 7832 7854 12526 13497 13501 13667 13676 15303
## [16861] 15813 15963 16202 16852 18642 25857 28099 188 300 389 480 555
## [16873] 618 681 783 801 893 998 1086 1160 1273 1364 1463 1520
## [16885] 1601 1660 1678 1680 1685 1759 1766 1827 1838 1841 1887 1890
## [16897] 1896 1936 1939 1965 1974 2115 2177 2386 2795 2898 2985 3091
## [16909] 3111 3166 3243 3310 3385 3488 3772 3991 4083 4125 4442 4462
## [16921] 4694 4794 4851 4921 5120 5126 5452 5639 5928 6003 6232 6243
## [16933] 6456 6541 6812 6845 6849 6986 7168 7370 7574 7668 7799 7941
## [16945] 8168 8273 8571 8717 20056 20141 20293 20392 20481 20559 20618 20674
## [16957] 20749 1088 20140 20300 20942 21015 21071 22332 22813 23636 23643 24131
## [16969] 24137 24333 24335 24495 25586 25876 25902 25916 26199 26429 26697 27827
## [16981] 27960 28611 29810 30042 30050 30148 30150 30151 30270 30272 30408 30410
## [16993] 30411 30412 30413 30414 30559 30566 30715 31067 31071 31072 31073 31075
## [17005] 31077 31078 31348 31354 31355 31921 31923 31925 31926 32137 32142 32341
## [17017] 32343 32344 32577 32579 32781 33720 33895 34157 34380 34381 34638 34641
## [17029] 34642 34643 34646 34706 34947 34948 34949 537 1930 3482 3487 3553
## [17041] 3561 3995 4080 4532 6841 6988 7985 8101 8110 8212 8473 8583
## [17053] 8715 10399 10859 10964 11009 11120 11127 11267 11672 16403 17333 18968
## [17065] 19185 19738 24648 24653 24658 25111 25564 25843 26157 26224 26315 26519
## [17077] 26711 26888 26927 27124 27167 27249 27253 27365 27381 27401 27514 27515
## [17089] 27603 28149 28310 28469 28610 28613 29014 29289 30041 30049 30561 30562
## [17101] 30710 31069 31350 31358 31490 31491 31599 31602 32346 32787 33003 33205
## [17113] 33546 33723 33892 33896 34384 34946 4046 4063 4424 4457 4498 4650
## [17125] 7953 7972 7976 8090 8093 8191 8210 8304 8332 8463 8613 8748
## [17137] 8850 8920 8930 8932 9098 9103 9105 9216 9322 9397 10218 12850
## [17149] 12944 14242 14400 14536 14839 16479 16585 16722 16723 16860 16871 16940
## [17161] 17081 17209 17479 17571 17646 17727 17811 17879 17968 18149 18304 18405
## [17173] 18554 18635 18717 19918 32023 32132 32338 9209 1002 4139 6259 8307
## [17185] 8816 9376 10156 11266 11830 12481 16386 23740 23851 23962 23982 33719
## [17197] 544 860 1968 1969 2067 2387 4033 4089 4533 4913 5049 5059
## [17209] 5137 5297 5306 5309 5312 5399 5434 5456 5946 6506 6510 6544
## [17221] 6556 6565 6597 6831 6900 6922 6936 6955 6960 7028 7212 7701
## [17233] 8440 8700 8711 8831 8910 9114 9215 9218 9384 9531 9616 9725
## [17245] 9819 9839 9961 9966 10068 10175 10229 10241 10372 10543 10648 10651
## [17257] 10729 10737 10854 10871 11125 11139 11244 11262 11362 11366 11468 11561
## [17269] 11759 11807 11895 11974 11977 12080 12179 12209 12618 12900 13236 13343
## [17281] 13507 13654 13694 14632 15102 15441 15454 16043 18710 19595 19994 21743
## [17293] 21750 22596 2154 5787 5965 6975 7199 7229 7802 7810 9010 12226
## [17305] 12487 13098 13370 13728 13868 14203 14228 14379 15110 15244 15581 15605
## [17317] 16684 16711 16853 17080 17182 18187 18274 18707 18868 19351 19844 25049
## [17329] 25129 25407 5796 12761 14622 16297 6563 9833 10187 12926 13210 15829
## [17341] 15835 24169 25081 25412 26361 26438 26937 26942 27119 28470 32024 11101
## [17353] 16481 16678 17204 17865 18713 19834 20887 20939 20945 21008 21371 22095
## [17365] 23111 23198 26716 26721 26879 27074 28114 28612 29848 30043 30274 30275
## [17377] 31489 31920 32133 32339 32340 32574 32779 32999 33203 33544 35169 35371
## [17389] 19746 20221 21308 31066 9828 11487 12387 14106 15386 15429 21370 21697
## [17401] 14845 15252 21143 26155 28160 32785 6567 17211 15300 9476 26196 31068
## [17413] 32345 32569 25134 465 875 2346 3032 4837 5024 5161 5276 5400
## [17425] 5458 5607 5768 5771 5922 5930 6171 6436 6543 6664 7059 8484
## [17437] 9448 12968 14165 14327 14442 15593 26325 98 101 161 169 183
## [17449] 330 334 411 415 502 579 607 625 696 699 700 702
## [17461] 704 772 773 774 775 776 800 1017 1095 1262 1270 1291
## [17473] 1383 1524 1699 1817 1834 1881 1886 1951 2123 2141 2145 2152
## [17485] 2175 2182 2343 2344 2376 2397 2399 2409 2505 2534 2647 2655
## [17497] 2741 2808 2827 2895 2912 2963 2977 3003 3026 3031 3084 3110
## [17509] 3161 3183 3238 3299 3384 3395 3508 3532 3551 3567 3748 3749
## [17521] 3782 3800 3807 3863 3871 3878 3883 3894 3905 3968 4008 4011
## [17533] 4031 4038 4040 4045 4049 4068 4075 4093 4096 4137 4148 4153
## [17545] 4161 4167 4172 4182 4450 4451 4453 4483 4486 4490 4494 4497
## [17557] 4542 4544 4549 4652 4653 4679 4682 4687 4691 4705 4790 4801
## [17569] 4834 4845 4930 4932 4933 5019 5032 5038 5039 5051 5055 5077
## [17581] 5159 5169 5175 5185 5194 5198 5283 5285 5287 5303 5308 5311
## [17593] 5319 5324 5385 5412 5425 5438 5444 5450 5453 5462 5598 5602
## [17605] 5604 5616 5622 5648 5662 5664 5667 5670 5673 5778 5805 5806
## [17617] 5816 5824 5913 5932 5935 5942 5947 5958 5974 5978 5986 6021
## [17629] 6048 6050 6054 6170 6193 6197 6210 6216 6433 6453 6460 6467
## [17641] 6495 6516 6539 6554 6590 6598 6654 6660 6668 6691 6697 6718
## [17653] 6742 6744 6759 6775 6785 7037 7062 7100 7120 7126 7238 7255
## [17665] 7259 7264 7274 7296 7307 7388 7391 7395 7396 7409 7411 7418
## [17677] 7434 7561 7575 7576 7592 7596 7613 7615 7625 7627 7727 7731
## [17689] 7745 7756 7765 7776 7880 7888 7918 7925 8023 8042 8053 8136
## [17701] 8149 8237 8253 8261 8356 8365 8391 8396 8408 8507 8518 8523
## [17713] 8533 8546 8629 8658 8661 8669 8678 8784 8804 8806 8858 8889
## [17725] 8891 8899 8962 8971 9036 9050 9138 9166 9169 9183 9186 9271
## [17737] 9280 9347 9355 9432 9498 9515 9582 9584 9592 9597 9606 9607
## [17749] 9673 9700 9752 9755 9761 9766 9770 9786 9868 9870 9875 9878
## [17761] 9884 9902 9921 9978 9988 9998 10003 10026 10093 10096 10110 10312
## [17773] 10320 10337 10431 10434 10488 10513 10521 10586 10601 10628 10687 10692
## [17785] 10696 10710 10781 10801 10805 10892 10902 10916 11018 11023 11026 11053
## [17797] 11055 11152 11153 11168 11185 11306 11321 11378 11383 11392 11401 11415
## [17809] 11503 11520 11598 11604 11614 11687 11699 11725 11775 11790 11792 11796
## [17821] 11842 11846 11856 11866 11926 11933 11944 12031 12033 12046 12134 12140
## [17833] 12245 12252 12435 12443 13131 13257 13322 13792 17363 17728 20561 20568
## [17845] 21189 21245 21303 21315 21346 21352 21418 21421 21425 21979 21986 22931
## [17857] 23072 23296 23306 23490 23959 25082 25088 25109 25408 28129 29020 29149
## [17869] 29150 29151 29152 29153 29291 29293 29415 29417 29419 29421 29558 29559
## [17881] 29561 29692 29693 29694 29695 29813 87 113 2720 2880 4113 4448
## [17893] 4484 4657 4696 5828 7572 13594 13773 14339 16563 16705 21244 21471
## [17905] 22489 23290 23436 23463 23474 23484 23763 23803 23858 23966 23972 23993
## [17917] 24003 24129 24229 24252 24350 24352 24486 24511 24514 27969 14307 14537
## [17929] 14618 14648 14809 14898 15010 15125 15126 15295 15305 15393 15483 15603
## [17941] 15643 15774 15779 15881 15911 16076 16212 16397 20381 27065 28883 29154
## [17953] 29295 29689 29937 32149 32798 33146 34408 34969 11 100 159 329
## [17965] 335 341 407 410 412 464 569 573 613 615 677 679
## [17977] 687 787 790 791 862 863 1000 1005 1096 1100 1158 1162
## [17989] 1191 1280 1293 1298 1358 1449 1537 1647 1681 1761 1774 1824
## [18001] 1835 1889 1897 2000 2008 2979 3025 3027 3029 3030 3466 3467
## [18013] 3953 4463 4488 4503 5634 5799 6024 6198 6217 7721 7774 7914
## [18025] 8018 8229 8346 8551 8762 8862 3402 9565 10442 10689 12687 13187
## [18037] 13423 14609 14628 14717 14814 14837 14909 15765 15896 15898 16198 16321
## [18049] 16393 17814 17880 17924 18288 18730 18859 18874 18885 18895 18974 20119
## [18061] 20123 20139 20323 21751 21799 21864 21924 22224 22412 22618 22652 22799
## [18073] 22933 22937 22961 23326 24386 24488 25580 25927 26436 26480 26684 26938
## [18085] 27835 30282 32799 34968 35383 15397 15760 15856 471 497 570 630
## [18097] 631 708 1354 1355 1381 1390 1443 1547 1548 2012 2015 2057
## [18109] 2066 2129 2132 2136 2156 2345 2468 3028 3574 4915 4916 4939
## [18121] 6513 6689 6770 8686 9277 9346 9445 9768 10724 10792 12243 13467
## [18133] 13643 14629 14904 14914 14976 15006 15160 15231 15259 15264 15306 15446
## [18145] 15617 16072 16361 16475 16690 16865 17572 17650 18176 18292 18305 18981
## [18157] 18995 19002 19332 19626 19634 19859 20616 20683 20686 20750 20878 21264
## [18169] 21319 21357 21374 23074 23094 23096 23492 23757 24009 24162 24255 24359
## [18181] 24888 25587 25932 25938 25979 26032 26240 26353 26518 26880 27147 27965
## [18193] 28287 28885 29418 29691 29814 29815 30890 35187 35384 9194 9778 9922
## [18205] 10015 10328 10341 10533 10625 10705 10810 10815 10914 10924 11039 11057
## [18217] 11068 11087 11088 11182 11188 11190 11192 11205 11220 11317 11386 11407
## [18229] 11418 11427 11497 11523 11528 11597 11627 11703 11730 11803 11878 11924
## [18241] 12045 12059 12124 12148 12151 12267 12289 12296 12300 12416 12426 12455
## [18253] 12460 12562 12573 12603 12684 12694 12791 12831 12993 13000 13024 13165
## [18265] 13184 13265 13274 13297 13453 13459 13608 13619 13735 13746 13802 13927
## [18277] 13931 13938 13953 13990 14152 14169 14180 14273 14316 15145 15902 19490
## [18289] 19712 19720 19721 19730 19847 23293 23312 23332 23637 23755 23767 177
## [18301] 7451 8019 8386 14599 14922 14995 17438 20296 21638 21640 22148 23977
## [18313] 3556 3562 3779 3948 4122 5408 5802 6204 6733 7103 7127 7368
## [18325] 7375 7422 8050 8217 8380 8637 8655 8779 8973 9039 9045 9359
## [18337] 9361 9425 9494 9567 9664 9695 9697 9896 9903 9995 10022 10098
## [18349] 10118 10132 10295 10416 10435 10499 10787 10933 10955 11049 11149 11201
## [18361] 12236 12255 12258 12414 13460 13621 14506 15614 15667 15754 15763 15849
## [18373] 15886 16069 16207 19533 20395 20475 20550 20768 21359 21373 21780 21926
## [18385] 22025 22097 22497 5176 7569 9272 13749 13796 13961 13967 13980 14117
## [18397] 14142 14144 14305 14321 14847 15118 15283 15299 15416 15425 15440 15456
## [18409] 15586 15651 15739 15742 15749 15859 15861 15905 16073 16080 16189 16300
## [18421] 16305 16371 16576 16818 16868 16875 17060 17110 17212 17235 17242 17335
## [18433] 17574 17640 17929 18046 18059 18131 18189 18281 18286 18390 18400 18418
## [18445] 18434 18495 18536 18551 18557 18594 18598 18701 18705 18866 18879 18883
## [18457] 19012 19085 19321 19335 19343 19348 19519 19524 19527 19536 19589 19707
## [18469] 19852 19858 20229 20417 20490 20562 20938 21012 22510 22795 23108 25047
## [18481] 25147 25149 25371 25638 26908 27121 28884 30281 31610 31611 33557 34174
## [18493] 15901 7764 12578 12723 12961 12995 13021 13122 13836 13983 13995 14737
## [18505] 22321 22396 24917 25084 25141 25869 25999 26428 26498 26668 26741 27127
## [18517] 27165 27178 27218 27233 27263 27507 27528 27621 27666 27816 27852 28143
## [18529] 28265 28270 28427 28428 28581 28752 28882 29021 29292 29294 29416 29420
## [18541] 29557 29560 29812 22508 22589 23275 20625 9602 16982 18998 6185 6213
## [18553] 15612 16701 16872 16931 17104 9502 16951 17174 17190 19474 33556 25122
## [18565] 26921 736 2350 2742 5195 7902 8233 8376 8516 8783 9408 13362
## [18577] 14870 27126 32930 33511 33666 34581 15 83 92 109 162 167
## [18589] 180 243 256 261 269 283 347 373 444 525 591 734
## [18601] 840 867 876 987 1006 1022 1148 1170 1251 1299 1369 1392
## [18613] 1439 1441 1445 1456 1528 1576 1578 1590 1591 1596 1606 1608
## [18625] 1610 1702 2347 2349 2398 2470 2527 2544 2556 2567 2596 2616
## [18637] 2678 3293 3312 3368 3375 3468 3470 3523 3750 3751 3949 3954
## [18649] 3966 3972 4195 4209 4212 4217 4234 4252 4255 4284 4291 4300
## [18661] 4326 4518 4547 4674 4835 5017 5025 5037 5047 5050 5599 5617
## [18673] 5620 5631 5668 5678 5970 6032 6145 6153 6401 6405 6569 6789
## [18685] 6825 6830 6894 6918 6924 7038 7089 7094 7097 7104 7248 7265
## [18697] 7279 7285 7292 7297 7309 7412 7419 7425 7442 7454 7586 7619
## [18709] 7634 7743 7771 7997 8114 8116 8119 8120 8126 8260 8362 8526
## [18721] 8651 8770 8772 8777 8782 8854 8871 8873 8877 8884 8893 8952
## [18733] 8972 9051 9124 9134 9140 9195 9251 9520 9529 9534 9629 9721
## [18745] 9796 9798 9800 9803 9814 9842 9855 9925 9930 9931 9938 9946
## [18757] 9948 9974 10035 10036 10038 10039 10041 10046 10080 10081 10144 10147
## [18769] 10151 10162 10170 10180 10237 10247 10478 10759 11233 11236 11981 11991
## [18781] 12076 12104 12181 12185 12316 12318 12326 12472 12896 13722 13851 14031
## [18793] 14457 14477 15068 15192 16545 19326 19471 20551 29252 29254 29387 34322
## [18805] 10 1161 2730 2824 2875 3100 3540 3589 3791 3903 4658 5066
## [18817] 5989 6013 6206 6594 6864 7879 8026 8254 8397 9260 16422 16425
## [18829] 16641 16746 16881 16924 16984 16999 17002 17125 17130 17140 17246 17286
## [18841] 17465 17584 17598 17676 19087 19186 19337 19340 19494 19784 20060 20219
## [18853] 20289 20295 20736 21306 21469 21521 21590 21736 21785 21912 21975 21978
## [18865] 22085 22138 22196 22289 22337 22359 22407 22409 22479 22502 22599 22607
## [18877] 22611 22769 22810 22921 22970 23317 23330 23439 23465 23467 23478 23743
## [18889] 23764 23784 23837 23871 23958 23994 23996 24341 24349 24363 24476 24507
## [18901] 24601 24629 24638 24655 24729 25096 25107 25319 25404 25601 25974 26454
## [18913] 35308 35506 2190 5325 5465 5679 6214 8796 9285 9369 9410 9560
## [18925] 9975 10082 10250 10776 10884 11279 11483 12524 12917 13413 13561 13661
## [18937] 13710 13870 13895 13908 14018 14041 14095 14234 14240 14446 14450 14481
## [18949] 14541 14574 14582 14785 14945 14968 14972 15072 15078 15081 15171 15336
## [18961] 15381 15496 15509 15708 15717 16354 16445 16543 16589 16600 16657 17046
## [18973] 17296 18141 26035 26949 27118 27224 27285 27410 28429 28430 33749 252
## [18985] 837 868 871 1004 1012 1014 1047 1155 1172 1274 1278 1367
## [18997] 1376 1447 1459 1521 1527 1582 1655 1893 1955 2004 2469 2520
## [19009] 2624 2806 2869 2982 3094 3469 3471 3472 3522 3570 3577 3752
## [19021] 3754 3755 3788 3882 3959 3969 3984 4012 4200 4204 4222 4249
## [19033] 4258 4263 4272 4278 4281 4446 4465 4506 4511 4522 4665 4668
## [19045] 4670 4702 4703 4706 4796 4802 4839 5029 5056 5062 5170 5296
## [19057] 5413 5428 5432 5605 5629 5635 5776 5788 5800 5809 5931 5948
## [19069] 5950 6000 6027 6149 6189 6208 6375 6385 6395 6529 6561 6796
## [19081] 6886 8369 8385 8541 8630 8799 8900 10167 10198 11240 4313 4937
## [19093] 5651 5967 7762 7910 8252 8404 9351 9550 9623 10176 10736 11673
## [19105] 11810 11827 13040 13239 13392 14585 14666 14677 14689 14751 14770 14773
## [19117] 14788 14853 14866 14872 14969 15906 16044 16046 16048 16328 16332 16417
## [19129] 16447 16541 16548 16649 16735 17433 17434 17553 17672 17684 17744 17758
## [19141] 17822 17835 18585 18690 18862 18865 18894 18963 18984 18986 19081 19083
## [19153] 19149 19151 19327 19484 19758 19905 19934 19975 19983 19987 20052 20313
## [19165] 20316 20374 20403 20407 20415 20503 20739 20889 20891 20934 20957 21007
## [19177] 21024 21069 21123 21197 21539 21748 21749 21798 21865 21925 22157 22630
## [19189] 22654 22772 22952 22985 24331 24375 24461 24465 24522 24625 24644 24661
## [19201] 25399 25410 25649 25657 25664 25855 25862 25995 26489 27842 27848 28001
## [19213] 28151 28302 28433 28582 29516 29645 29909 30006 30008 30122 30123 30235
## [19225] 30236 30237 30238 30371 30372 30375 30522 30523 30650 30653 30654 30656
## [19237] 30830 30831 30832 30833 30834 30838 30839 31009 31010 31013 31014 31300
## [19249] 31301 31304 31306 31459 31997 31999 32000 32278 32280 32282 32287 32288
## [19261] 32502 32506 32511 32512 32514 32722 32937 33750 33752 33756 34092 34094
## [19273] 34096 34099 34102 34313 34315 34317 34319 34320 34561 34562 34563 34566
## [19285] 34567 34578 34744 34747 34888 34891 34892 35080 35129 26467 26479 31825
## [19297] 32002 32099 32101 32283 33679 34091 735 2119 2153 2348 2602 2716
## [19309] 3372 3753 4321 5626 6173 6178 6379 6806 6929 6940 7131 7134
## [19321] 7557 7630 8805 9554 9834 9844 9857 12505 12913 14755 14783 14863
## [19333] 14953 15327 15879 16602 17668 19003 22613 22625 22659 22826 22930 23608
## [19345] 24357 24380 24383 24470 24604 24643 24656 24762 24776 24783 24786 24902
## [19357] 25053 25325 25340 25841 25931 25943 26004 26008 26277 26306 26427 26450
## [19369] 26664 26722 26947 27058 27106 27120 27259 27394 27407 27498 27510 27530
## [19381] 27535 27600 27655 27669 27937 27946 27978 28100 28148 28152 28256 28431
## [19393] 28436 28753 28757 28758 28887 28888 28889 28987 29109 29111 29113 29253
## [19405] 29255 29256 29385 29388 29517 29518 29519 29520 29644 29784 29907 30007
## [19417] 30124 30233 30234 30373 30515 30516 30518 30655 31303 31460 31572 31573
## [19429] 31577 31678 31680 31681 31682 31761 31762 31767 32104 32106 32507 32513
## [19441] 32727 32939 32940 33154 33508 33669 33675 33751 35083 35307 35320 35505
## [19453] 1284 2574 2621 2683 2721 4343 5033 5040 5043 5415 5609 6814
## [19465] 7072 7261 7282 7287 7304 7376 7562 7565 7589 7604 7609 7734
## [19477] 7752 7781 8406 8897 9163 9647 9717 9738 9741 9792 9817 9824
## [19489] 9838 9846 9849 9852 9943 9960 9963 9968 9969 9972 10064 10070
## [19501] 10072 10077 10139 10185 10209 10214 10227 10371 10392 10397 10456 10473
## [19513] 10477 10536 10549 10561 10652 10675 10731 10738 10855 10880 10973 10996
## [19525] 11001 11008 11113 11118 11134 11263 11278 11365 11460 11470 11474 11564
## [19537] 11636 11661 11746 11763 11825 11836 11902 11978 11993 12004 12078 12097
## [19549] 12107 12112 12201 12206 12228 12330 12353 12367 12380 12384 12480 12482
## [19561] 12492 12499 12512 12620 12638 12643 12656 12661 12665 12670 12755 12805
## [19573] 12848 12886 12901 12919 13053 13076 13078 13195 13228 13246 13353 13383
## [19585] 13396 13505 13520 13532 13536 13538 13646 13650 13687 13690 13702 13861
## [19597] 13873 13881 13890 14061 14063 14080 15186 20613 20667 20813 21251 23211
## [19609] 23298 23772 23780 23809 23829 23856 23859 23953 23975 23979 23990 24089
## [19621] 24117 24148 24166 24257 24258 24269 25048 25065 25073 25104 25142 25150
## [19633] 25336 25595 25634 25878 25894 25963 25984 26017 26250 26266 26360 26688
## [19645] 26693 26702 26933 26946 27084 27108 27211 27376 31576 33506 33507 33676
## [19657] 33680 33681 33754 33757 33759 34081 34083 34086 34089 34097 34318 34325
## [19669] 34571 34573 34890 35079 35082 35310 35319 35503 6571 8140 10231 10377
## [19681] 10772 11655 14429 14859 17554 22482 24109 25347 26312 26389 27604 277
## [19693] 1546 1598 2650 5636 6802 7250 7628 7780 8409 8904 9645 9808
## [19705] 9837 9928 9953 10044 10045 10219 10836 10875 11245 11472 12000 12215
## [19717] 12346 12611 12858 13524 13706 14035 14230 15029 15840 16741 17435 17821
## [19729] 17838 17949 18048 22430 22798 22809 23431 23814 23969 5402 7452 7616
## [19741] 7791 14226 14249 15189 15213 15503 15701 15703 15888 15903 16055 16782
## [19753] 16798 16913 16917 17013 17134 17253 17467 17485 17675 18023 18035 18133
## [19765] 18155 18270 18293 18408 18435 18514 18516 18537 18539 18588 19179 19352
## [19777] 19354 19355 19358 19362 19505 19515 19518 19521 19535 19742 19743 19750
## [19789] 19798 19811 19820 19926 20239 20391 20555 20570 20627 20680 20682 20687
## [19801] 20883 21202 21263 21316 21317 21430 21473 22092 22197 22281 23110 25056
## [19813] 25298 25307 26532 29258 30520 31457 6795 7081 7313 9379 12495 12894
## [19825] 13086 13716 13912 14024 14088 15706 16105 25124 25372 25619 25625 25677
## [19837] 25970 28754 28755 29112 29114 29257 29521 29783 31763 17577 21906 22644
## [19849] 24337 26738 34749 3775 6370 6580 7550 7597 9386 9484 11342 11449
## [19861] 13659 14090 15314 16759 16925 16987 16992 17040 20220 15196 15375 15536
## [19873] 15723 15908 16079 16131 16243 17444 17025 34575 20960 22948 24521 24724
## [19885] 25026 25113 25293 25380 25562 25859 25887 25914 25928 25933 25952 25961
## [19897] 25967 26000 26009 26030 26271 26393 26508 26539 26678 26707 26747 26762
## [19909] 26954 27063 27155 27483 27609 27806 27840 27952 27955 27984 28105 28127
## [19921] 28135 28154 28285 28432 28434 28435 28583 28584 28756 28886 28989 29110
## [19933] 29251 29386 29515 29646 29782 29840 29908 30009 30120 30121 30125 30239
## [19945] 30374 30517 30519 30521 30651 30652 30657 30658 30835 30836 30837 30840
## [19957] 30841 31011 31012 31015 31016 31298 31299 31302 31305 31455 31456 31458
## [19969] 31574 31575 31679 31683 31684 31764 31765 31766 31826 31827 31996 31998
## [19981] 32001 32100 32102 32103 32105 32276 32277 32279 32281 32284 32285 32286
## [19993] 32499 32500 32501 32503 32504 32505 32508 32509 32510 32515 32516 32721
## [20005] 32723 32724 32725 32726 32728 32729 32730 32731 32928 32929 32931 32932
## [20017] 32933 32934 32935 32936 32938 32941 32942 33147 33148 33149 33150 33151
## [20029] 33152 33153 33155 33156 33500 33501 33502 33503 33504 33505 33509 33510
## [20041] 33667 33668 33670 33671 33672 33673 33674 33677 33678 33748 33753 33755
## [20053] 33758 33760 33761 33762 34080 34082 34084 34085 34087 34088 34090 34093
## [20065] 34095 34098 34100 34101 34312 34314 34316 34321 34323 34324 34326 34564
## [20077] 34565 34568 34569 34570 34572 34574 34576 34577 34579 34580 34743 34745
## [20089] 34746 34748 34887 34889 34893 34894 34895 34896 34897 34898 34899 34900
## [20101] 35076 35077 35078 35081 35124 35125 35126 35127 35128 35130 35131 35309
## [20113] 35311 35312 35313 35314 35315 35316 35317 35318 35321 35504 35507 35508
## [20125] 35509 35510 28988 1776 3747 4713 8357 13176 14721 16 65 66
## [20137] 82 192 198 293 624 684 770 771 804 909 1084 1154
## [20149] 1157 1255 1302 1353 1440 1458 1579 1595 1600 1663 1665 1672
## [20161] 1691 1771 1843 1949 1959 2053 2137 2143 2160 2388 2394 2402
## [20173] 2408 2465 2466 2467 2543 2549 2677 2785 2788 2798 2868 2965
## [20185] 3023 3024 3093 3164 3173 3234 3315 3463 3464 3465 3530 3576
## [20197] 3583 3588 3593 3746 3798 3898 3962 3965 3971 4005 4006 4194
## [20209] 4199 4208 4228 4304 4312 4325 4468 4473 4485 4491 4492 4496
## [20221] 4546 4704 4793 4795 4797 4941 4953 5014 5022 5057 5065 5166
## [20233] 5183 5191 5193 5272 5274 5289 5316 5318 5391 5393 5405 5418
## [20245] 5422 5441 5445 5451 5457 5459 5606 5615 5625 5633 5658 5785
## [20257] 5812 5822 5949 6015 6034 6165 6175 6188 6196 6212 6439 6444
## [20269] 6447 6481 6498 6501 6533 6542 6557 6559 6803 6822 6829 6870
## [20281] 6923 6947 7036 7047 7088 7117 7241 7244 7257 7269 7272 7291
## [20293] 7374 7393 7408 7424 7545 7554 7602 7612 7737 7923 8003 8006
## [20305] 8008 8040 8147 8151 8219 8245 8415 8483 8538 8635 8685 8749
## [20317] 8753 8765 8798 8861 8866 8868 8896 8958 8976 9029 9123 9150
## [20329] 9193 9250 9261 9275 9279 9331 9333 9337 9352 9353 9362 9422
## [20341] 9430 9440 9499 9508 9579 9589 9591 9665 9677 9701 9710 9753
## [20353] 9759 9769 9781 9865 9867 9877 9906 9982 9994 9997 10008 10100
## [20365] 10115 10125 10265 10275 10340 10345 10367 10424 10443 10490 10502 10524
## [20377] 10592 10594 10618 10704 10707 10711 10812 10817 10910 10954 11019 11086
## [20389] 11170 11223 11298 11334 11409 11430 11502 11525 11596 11630 11696 11720
## [20401] 11781 11806 11864 11884 11936 11957 12024 12069 12135 12168 12235 12241
## [20413] 12244 12395 12399 12442 12536 12547 12556 12567 12679 12695 12725 12796
## [20425] 12812 12865 12964 12979 12998 13011 13020 13126 13137 13143 13174 13281
## [20437] 13294 13296 13319 13340 13417 13430 13478 13563 13585 13612 13638 13742
## [20449] 13794 13824 13833 13943 13945 13981 13987 13996 14110 14127 14138 14154
## [20461] 14174 14265 14275 14285 14304 14311 14328 14337 14408 14422 14486 14492
## [20473] 14494 14531 14598 14638 14704 14705 14726 14800 14818 14894 14902 14920
## [20485] 14931 14977 14979 14986 15089 15094 15100 15108 15111 15124 15228 15235
## [20497] 15241 15248 15271 15281 15390 15402 15415 15435 15449 15569 15600 15611
## [20509] 15620 15639 15645 15658 15792 15819 15858 15860 15869 15877 15895 16049
## [20521] 16059 16084 16086 16156 16169 16181 16194 16203 16206 16272 16284 16304
## [20533] 16320 16376 16380 16385 16389 16394 16408 16413 16458 16480 16486 16556
## [20545] 16558 16575 16584 16587 16680 16686 16689 16715 16730 16817 16821 16829
## [20557] 16836 16837 16839 16841 16850 16857 16876 16930 16935 16943 16946 16948
## [20569] 16952 16956 16962 16968 16975 17056 17066 17072 17074 17075 17084 17087
## [20581] 17098 17100 17109 17171 17185 17188 17203 17210 17215 17224 17228 17234
## [20593] 17237 17240 17303 17305 17315 17316 17328 17341 17350 17351 17360 17365
## [20605] 17367 17427 17440 17443 17449 17453 17454 17457 17476 17482 17552 17558
## [20617] 17562 17563 17570 17575 17576 17608 17611 17621 17625 17629 17634 17638
## [20629] 17645 17647 17692 17695 17696 17708 17712 17713 17718 17729 17732 17775
## [20641] 17784 17787 17788 17795 17798 17812 17815 17852 17858 17863 17871 17872
## [20653] 17873 17913 17917 17919 17926 17931 17938 17947 18022 18033 18036 18037
## [20665] 18041 18047 18050 18126 18137 18158 18162 18167 18171 18266 18271 18275
## [20677] 18283 18287 18289 18294 18386 18401 18406 18407 18413 18417 18420 18432
## [20689] 18439 18497 18510 18515 18533 18534 18535 18547 18550 18611 18616 18629
## [20701] 18640 18644 18693 18708 18709 18711 18775 18777 18785 18786 18787 18789
## [20713] 18794 18799 18806 18860 18867 18869 18875 18888 18890 18900 18956 18967
## [20725] 18972 18987 18991 18997 19077 19079 19082 19090 19092 19145 19162 19169
## [20737] 19175 19176 19318 19322 19330 19333 19334 19346 19353 19363 19459 19467
## [20749] 19487 19498 19507 19510 19591 19601 19618 19620 19680 19704 19713 19717
## [20761] 19736 19766 19769 19778 19809 19814 19819 19902 19904 19907 19909 19919
## [20773] 19925 19981 19984 19989 19991 19993 19999 20050 20059 20063 20066 20074
## [20785] 20129 20154 20162 20213 20236 20290 20373 20375 20482 20510 20554 20569
## [20797] 20665 20678 20762 20814 20820 20879 20890 20944 20947 20955 21013 21066
## [20809] 21076 21084 21186 21187 21195 21249 21254 21267 21302 21307 21312 21344
## [20821] 21348 21354 21403 21409 21412 21414 21415 21460 21461 21472 21476 21520
## [20833] 21529 21542 21549 21584 21586 21587 21592 21651 21681 21738 21797 21844
## [20845] 21846 21854 21866 21917 21922 21969 21988 22018 22021 22078 22084 22094
## [20857] 22102 22135 22143 22146 22160 22201 22206 22209 22217 22263 22271 22290
## [20869] 22324 22328 22333 22341 22344 22346 22350 22355 22398 22406 22411 22429
## [20881] 22490 22501 22522 22610 22628 22634 22747 22797 22808 22815 22932 22951
## [20893] 22960 22972 22977 23061 23067 23097 23109 23112 23175 23183 23190 23194
## [20905] 23201 23281 23295 23300 23302 23303 23310 23424 23427 23443 23449 23454
## [20917] 23749 23759 23771 23779 23813 23841 23855 23970 23983 24005 24096 24111
## [20929] 24115 24153 24231 24237 24256 24275 24345 24356 24460 24475 24512 24618
## [20941] 24626 24631 24646 24651 24731 24738 24758 24765 24771 24773 24871 24878
## [20953] 24880 24881 24893 24909 24918 25037 25043 25044 25060 25064 25072 25098
## [20965] 25103 25123 25131 25155 25315 25322 25324 25349 25381 25383 25393 25565
## [20977] 25572 25614 25618 25642 25670 25861 25907 25911 25925 25946 25947 25982
## [20989] 25987 25988 26011 26016 26029 26265 26276 26311 26324 26419 26478 26497
## [21001] 26670 26675 26728 26736 26742 26768 26875 26887 26890 26895 26896 26923
## [21013] 26932 27057 27083 27085 27086 27088 27129 27164 27186 27195 27204 27216
## [21025] 27223 27292 27358 27370 27384 27395 27403 27482 27490 27504 27509 27513
## [21037] 27517 27522 27529 27608 27612 27616 27630 27637 27645 27647 27654 27656
## [21049] 27811 27838 27839 27841 27954 27963 27972 28006 28007 28111 28117 28130
## [21061] 28275 28279 28282 28284 28420 28421 28423 28425 28574 28576 28578 28745
## [21073] 28746 28747 28748 28749 28750 28873 28874 28875 28876 28877 28878 28879
## [21085] 28880 28980 28981 28982 28983 28984 28985 29098 29099 29100 29101 29102
## [21097] 29104 29105 29106 29107 29240 29242 29243 29244 29245 29246 29247 29248
## [21109] 29249 29250 29376 29377 29378 29379 29380 29381 29382 29384 29504 29505
## [21121] 29506 29507 29508 29509 29510 29511 29512 29513 29638 29639 29640 29642
## [21133] 29776 29778 29780 29781 30227 30366 30369 30509 30510 30676 30823 30826
## [21145] 30829 31000 31003 31190 31191 31288 31289 31450 31451 31452 31453 31454
## [21157] 31566 31567 31568 31571 31673 31674 31760 31822 31824 31894 31994 31995
## [21169] 32093 32094 32095 32096 32267 32490 32494 32713 32715 32716 32720 32910
## [21181] 32913 32917 32918 32927 33132 33134 33140 33141 33142 33144 33145 33492
## [21193] 33493 33494 33495 33658 33664 33665 33865 33871 33876 34069 34076 34077
## [21205] 34304 34308 34552 34556 19 81 216 470 621 686 1282 2404
## [21217] 2514 2591 2729 2803 2871 3524 3578 3987 4290 4466 4493 4526
## [21229] 5614 6010 6168 6428 6451 6863 6887 7041 7085 7093 7111 7254
## [21241] 7266 7415 7588 7724 7748 7881 13642 13809 14434 16568 16665 19091
## [21253] 19150 19192 19336 19357 19476 19908 19933 20502 20669 20751 21849 21861
## [21265] 21862 21911 22142 22484 22527 22739 22802 22923 22966 23266 23276 23286
## [21277] 23416 23429 23742 23777 23792 23807 23853 23980 24000 24088 24120 24124
## [21289] 24151 24234 24240 24268 24377 24473 24520 24637 24660 24728 24735 24775
## [21301] 24780 24895 24905 25025 25083 25102 25356 25361 25609 25633 25665 25842
## [21313] 25900 25950 25986 26021 26359 26384 26403 26517 26710 26761 26764 26894
## [21325] 26915 31891 32092 32268 32275 32497 32714 32915 32916 32921 32925 32926
## [21337] 33654 33657 33869 33870 34071 34558 34882 35301 34310 195 211 308
## [21349] 322 394 398 463 466 493 543 551 609 612 614 678
## [21361] 688 691 793 796 803 806 895 896 901 902 989 1016
## [21373] 1023 1024 1077 1099 1102 1105 1106 1166 1180 1186 1189 1267
## [21385] 1292 1297 1371 1387 1454 1531 1589 1658 1714 1773 1837 1945
## [21397] 1958 2001 2010 2056 2062 2118 2126 2168 2342 2382 2396 2524
## [21409] 2566 2601 2607 2628 2654 2663 2801 2805 2811 2815 2816 2874
## [21421] 2897 2908 2909 2971 2980 2995 2996 2998 3018 3019 3020 3021
## [21433] 3022 3096 3101 3103 3104 3112 3171 3174 3177 3178 3223 3240
## [21445] 3242 3303 3318 3321 3381 3387 3462 3513 3526 3563 3592 4003
## [21457] 4244 4307 4342 4458 4479 4502 4504 4505 4534 4538 4541 4664
## [21469] 4673 4688 4699 4708 4857 4863 4944 4950 5028 5064 5168 5197
## [21481] 5426 5463 5677 5765 5798 5820 5977 6033 6043 6158 6180 6200
## [21493] 6486 6497 6573 6575 6838 6876 6913 6917 6935 7065 7113 7125
## [21505] 7268 7290 7300 7302 7755 7773 7790 7908 7929 8030 8036 8041
## [21517] 8152 8232 8250 8361 8411 8495 8517 8540 8659 8681 8769 8795
## [21529] 8906 8964 8980 9032 9049 9165 9174 9244 9427 9450 10491 10526
## [21541] 10585 10626 10715 10717 10818 10901 10947 11048 11070 11080 11154 11198
## [21553] 11212 11300 11313 11320 11394 11400 11426 11508 11527 11612 11716 11779
## [21565] 11793 11868 11941 12022 12133 12266 12284 12421 12428 12560 12581 12699
## [21577] 12727 12800 12872 12985 12988 13012 13153 13181 13288 13327 13432 13473
## [21589] 13597 13601 13835 13991 14131 14281 14414 14509 14527 14605 14643 14707
## [21601] 14730 14812 14832 15013 15155 15268 15420 15796 15870 16580 16703 16867
## [21613] 16958 16978 17107 17231 17353 17466 17568 17651 17714 17807 3295 8132
## [21625] 8259 10714 12597 14842 14913 15900 18896 19183 20226 20317 20326 20409
## [21637] 20425 20815 20946 21073 22612 22642 22735 22758 22761 22788 22825 22934
## [21649] 22969 22980 23209 23797 24139 24355 24374 24381 24464 25577 25922 25954
## [21661] 26249 26342 28096 28243 28268 28271 28418 28422 28426 28575 28580 29514
## [21673] 29904 29905 29906 30002 30003 30004 30005 30117 30118 30231 30512 30514
## [21685] 30677 30678 30816 30817 30818 30820 30821 30822 31002 31007 31008 31183
## [21697] 31187 31189 31283 31284 31291 31297 32098 32271 32272 32273 32274 32492
## [21709] 32496 32498 32709 32710 32718 32922 33866 33875 34072 34074 34301 34302
## [21721] 34303 34311 34551 34553 34557 34559 34739 34742 34881 34883 34886 35115
## [21733] 35117 35122 35296 35302 35502 30229 30679 494 1462 1473 1755 3113
## [21745] 3120 3296 3324 6546 6585 6794 10931 18178 18902 19339 19359 19369
## [21757] 19481 19530 19624 19627 19631 19715 20322 22653 23181 24534 24654 25039
## [21769] 25080 25387 25644 25935 25966 26531 26706 26905 26920 27242 27258 27373
## [21781] 27382 27402 27479 27527 27599 27829 27836 27837 28419 28577 28751 28881
## [21793] 28986 29103 29108 29241 29383 29637 29777 31290 31565 31569 31676 31677
## [21805] 31758 31759 31892 31896 31993 32717 32912 33873 35123 35305 35306 8530
## [21817] 9756 9874 9977 10086 10103 10260 10413 10590 10682 10786 10908 11029
## [21829] 11165 11289 11397 11506 11588 11693 11845 12305 12413 12466 19534 19816
## [21841] 25346 25610 26377 27491 27635 32711 32914 32920 33133 33135 33138 33139
## [21853] 33496 33655 33656 33661 33663 33864 33867 33868 34073 34075 34079 34307
## [21865] 34740 34741 35114 35116 35118 35120 35297 35298 35303 35304 35497 35498
## [21877] 35501 77 1388 8225 9444 10414 12696 13141 13334 14186 14289 14295
## [21889] 14591 16160 21685 24095 25905 25958 26334 26466 27936 31293 32091 2879
## [21901] 2892 3085 3371 3393 3507 3510 3529 3539 5015 5436 5912 5980
## [21913] 5982 6146 6151 9127 9511 9598 10014 10135 10297 10508 10824 10927
## [21925] 11066 11217 11311 11396 11406 11713 11782 12017 12026 12423 12554 12674
## [21937] 12774 12814 13104 13120 13263 13268 13801 13818 14259 14426 14427 14437
## [21949] 14597 14607 15289 15626 15793 20284 22338 24155 4860 5410 12144 12463
## [21961] 12552 13027 13116 13739 13955 15290 15451 15616 15642 15816 15884 16804
## [21973] 18265 18980 25033 25997 26461 27070 29641 18964 23297 2706 22277 28579
## [21985] 8052 8403 18689 26717 18988 34549 25942 26903 28424 29643 29779 30119
## [21997] 30228 30230 30232 30365 30367 30368 30370 30507 30508 30511 30513 30675
## [22009] 30819 30824 30825 30827 30828 30999 31001 31004 31005 31006 31180 31181
## [22021] 31182 31184 31185 31186 31188 31281 31282 31285 31286 31287 31292 31294
## [22033] 31295 31296 31449 31570 31675 31757 31823 31893 31895 32097 32269 32270
## [22045] 32491 32493 32495 32712 32719 32911 32919 32923 32924 33136 33137 33143
## [22057] 33497 33498 33499 33659 33660 33662 33872 33874 33877 34070 34078 34300
## [22069] 34305 34306 34309 34548 34550 34554 34555 34560 34738 34880 34884 34885
## [22081] 35119 35121 35299 35300 35496 35499 35500 2216 3087 3426 3649 3691
## [22093] 3816 4935 5069 5900 6059 6220 6225 6509 6962 8208 8272 8292
## [22105] 8424 8561 10589 11494 11691 11928 11950 12753 13169 13261 13300 13351
## [22117] 13568 13606 13797 13975 14135 14313 14799 14927 14980 20807 23 35
## [22129] 116 145 146 147 151 219 229 235 246 249 284 348
## [22141] 371 420 423 443 505 530 586 602 751 767 852 1028
## [22153] 1075 1092 1152 1173 1258 1300 1359 1389 1442 1468 1471 1522
## [22165] 1545 1612 1668 1674 1844 1885 1909 2130 2188 2217 2352 2378
## [22177] 2485 2486 2487 2510 2559 2570 2597 2608 2633 2651 2693 2703
## [22189] 2708 2713 2731 2802 2826 2885 2911 2972 2991 3102 3108 3167
## [22201] 3279 3350 3441 3480 3481 3607 3608 3611 3613 3684 3688 3851
## [22213] 3910 3928 4196 4206 4223 4226 4236 4241 4245 4256 4259 4266
## [22225] 4269 4275 4298 4328 4349 4362 4396 4408 4414 4417 4419 4422
## [22237] 4426 4430 4438 4441 4564 4593 4607 4639 4721 4741 4777 4841
## [22249] 4853 4922 4927 5016 5067 5072 5124 5157 5277 5293 5320 5419
## [22261] 5421 5642 5749 5762 5842 5882 5898 6074 6112 6116 6223 6260
## [22273] 6289 6441 6494 6499 6589 6593 6600 6661 6665 6672 6690 6705
## [22285] 6711 6721 6784 6972 6993 7004 7006 7015 7144 7219 7226 7382
## [22297] 7429 7444 7502 7540 7678 7702 7841 7850 7866 7981 7989 8055
## [22309] 8068 8098 8182 8188 8190 8194 8320 8471 8573 8620 8708 8745
## [22321] 8818 9073 9082 9091 9320 9513 9600 9668 9705 9711 9764 9772
## [22333] 9779 9876 9898 9911 9986 9989 10011 10017 10028 10107 10112 10256
## [22345] 10270 10281 10284 10304 10310 10313 10327 10342 10347 10420 10449 10493
## [22357] 10597 10685 10719 10728 10808 10821 10934 10937 10942 11033 11050 11089
## [22369] 11184 11211 11297 11319 11403 11420 11435 11509 11539 11613 11618 11624
## [22381] 11707 11715 11778 11799 11805 11855 11886 11938 11952 12034 12057 12129
## [22393] 12160 12257 12295 12415 12456 12568 12599 12686 12813 12845 12994 13015
## [22405] 13121 13149 13289 13308 13367 13371 13397 13614 13627 13633 13763 13816
## [22417] 13840 13973 13985 13989 14181 14332 19528 19622 20571 20626 21366 21432
## [22429] 21470 21532 21599 21605 21753 21782 21851 21907 21971 22023 22027 22091
## [22441] 22156 22216 22221 22272 22639 22801 22956 23307 23325 23473 23641 23753
## [22453] 23821 23845 23989 24008 24107 24128 24159 24271 24372 24525 24634 24772
## [22465] 27812 27813 27823 27825 28602 28779 28908 28909 29006 29009 29138 29139
## [22477] 29143 29281 29282 29284 29285 29286 29287 29404 29408 29550 29551 136
## [22489] 358 434 510 662 738 1372 1686 2821 2974 3115 3172 3230
## [22501] 3239 3273 3353 5053 5132 5291 5298 5390 5430 6268 6768 7154
## [22513] 7706 16562 18882 19006 19094 19164 19191 19328 19347 19368 19464 19517
## [22525] 19838 19923 19997 20048 20402 20498 20501 21908 22958 22968 23089 23101
## [22537] 23185 23271 23279 23285 23446 23460 23462 23469 23487 23606 23610 23615
## [22549] 23782 23850 23868 23947 23976 23995 24002 24091 24130 24141 24146 24149
## [22561] 24263 24370 24382 24384 24509 24532 24652 24663 24668 24755 24789 25120
## [22573] 25290 25294 25317 25332 25603 25620 25651 26164 26405 26696 32990 33535
## [22585] 33717 739 742 1760 4917 5148 5281 5893 5895 12588 12720 12821
## [22597] 14096 14132 14377 14538 14633 14641 14727 14817 14819 14823 14828 14912
## [22609] 14928 14987 15152 15230 15625 15766 15776 15781 16022 16025 16200 16211
## [22621] 16391 17198 17310 17794 17882 17952 18122 18144 18166 18175 18256 18302
## [22633] 18308 18524 18555 18606 18878 19331 19739 19740 22741 24517 31346 31347
## [22645] 31484 33194 34368 741 1010 1165 1263 1287 1384 1450 1540 1659
## [22657] 1708 1713 1764 1772 1832 1900 1915 1973 2068 2125 2519 2657
## [22669] 2687 2698 2812 2896 2910 2961 2983 3106 3260 3330 3432 3443
## [22681] 3609 3610 3665 3728 3850 3856 3929 3933 3940 4211 4262 4292
## [22693] 4295 4301 4305 4323 4331 4336 4339 4345 4352 4391 4415 4432
## [22705] 4588 4600 4635 4781 4843 4934 5075 5154 5442 5663 5738 5858
## [22717] 6115 6442 6535 6587 6692 6727 6749 6764 6778 6959 7013 7194
## [22729] 7449 7529 7536 7656 7807 7812 7817 7834 7860 8072 8095 8171
## [22741] 8213 8435 8468 8562 8568 8730 8834 8837 8944 9007 10444 10530
## [22753] 10619 10699 10939 11044 11181 12012 12539 12544 991 1375 7642 9423
## [22765] 9446 16359 16555 16682 16959 17875 18722 18957 18994 19076 19088 19093
## [22777] 19167 19168 19367 19492 20076 20125 20138 20144 20301 20384 20818 20963
## [22789] 21022 21063 21068 21650 21682 21858 22400 22403 22417 22478 22515 22519
## [22801] 22526 22536 22590 22602 22657 22762 22767 22777 22824 22942 22973 23059
## [22813] 23064 23073 23269 23445 23482 23640 24083 24163 24348 24367 24369 24378
## [22825] 24385 24529 24650 25328 25406 25570 25671 25848 25852 25860 25871 25926
## [22837] 25936 26139 26141 26143 26148 26178 26241 26295 26336 26437 26753 28266
## [22849] 28455 28458 28463 28603 28609 30037 30145 30405 30550 30551 30552 30702
## [22861] 30707 30708 30878 31058 31060 31339 31344 31597 31699 31779 31916 31917
## [22873] 32328 32330 32333 32559 32766 32772 32775 33542 34626 34631 34633 34636
## [22885] 34709 34962 24 915 1027 1908 1961 2048 2351 2593 2618 3405
## [22897] 3647 3701 3907 4423 5271 6687 8558 8570 10329 10346 10352 11034
## [22909] 13629 14891 14978 15019 15026 15460 16461 16679 17073 17177 17560 17632
## [22921] 17701 17772 17776 17785 17854 17869 17953 17960 17970 18025 18501 18861
## [22933] 18873 18977 18992 19080 19156 19165 19630 20128 20234 21313 21365 21377
## [22945] 21379 21429 21535 21606 21698 22259 22422 22785 23434 23964 23987 24472
## [22957] 24477 24479 24482 24501 24741 24778 24883 24901 24912 25138 26485 26900
## [22969] 26912 27113 27390 27412 27500 27653 27662 27805 28004 28253 28459 28601
## [22981] 28784 28911 29004 29005 29137 29142 29283 29406 29410 29549 29673 29674
## [22993] 29676 29846 29927 29929 30265 30402 30404 30555 30706 30709 30876 31345
## [23005] 31595 31701 32562 32564 32566 32768 32986 32994 33192 33198 33200 33536
## [23017] 33539 33716 33807 33808 34149 34150 34625 34710 34712 35156 35161 35163
## [23029] 35360 35530 2585 2612 2709 2724 3612 3833 4277 4289 4428 5411
## [23041] 5608 5700 6100 6248 6464 6954 7401 7652 7795 7827 9575 10262
## [23053] 10266 10278 10614 10688 10782 10915 12016 12018 12062 12165 12242 12855
## [23065] 13028 13035 13269 13394 19748 19916 20424 34372 34714 34958 34961 35153
## [23077] 35160 35359 35362 35527 762 857 1470 3283 8982 9236 11333 13129
## [23089] 13185 13256 13331 14805 20122 20286 20312 24152 28608 666 740 768
## [23101] 1026 1174 1190 1253 1385 1391 1532 1574 1669 1962 2052 2553
## [23113] 2820 2903 3181 3444 3726 3810 3815 6658 6680 6757 6762 6774
## [23125] 7648 8578 8590 9317 9435 9596 11022 11196 11705 12776 13330 13358
## [23137] 13384 13387 13572 13747 14725 14916 15405 15414 16012 18784 19513 19532
## [23149] 19745 19747 19836 19976 19986 20072 20159 20308 20383 20420 20512 20771
## [23161] 20832 20868 20872 20952 21010 21028 21090 21148 21172 21603 21637 21647
## [23173] 21701 21734 21779 21792 21870 21921 22019 22154 22325 22360 22495 22529
## [23185] 22821 22924 22925 22939 2509 9005 12986 12987 13030 13118 13154 13315
## [23197] 13754 14148 15104 15224 15411 15422 15457 15481 15584 15597 15607 15615
## [23209] 15627 15671 15731 15751 15917 15928 16031 16035 16179 16307 16719 16828
## [23221] 16964 16977 17051 17062 17096 17180 17306 18147 18154 18254 18280 18381
## [23233] 18399 18504 18506 18512 18608 18698 18782 18863 19319 19342 19473 19482
## [23245] 19496 19605 19609 19829 20495 20689 22291 23062 23069 25035 25040 25302
## [23257] 25600 26160 11531 13151 13341 13363 13785 15016 15266 15466 22147 23425
## [23269] 23618 23733 23760 23796 23873 24916 26146 26150 26186 26190 26455 26714
## [23281] 26720 26737 26769 26907 26924 27274 27361 27495 27537 28094 28147 9862
## [23293] 11213 11221 11526 11621 11626 11632 11718 11801 13266 13620 14283 14369
## [23305] 14529 14840 15245 15474 15784 16404 16572 17804 18884 20663 21266 21427
## [23317] 21692 22348 23113 23274 28098 28102 28785 34377 19832 19915 5313 5387
## [23329] 6540 6545 7377 7465 7527 11301 12254 13636 13829 13923 13979 15229
## [23341] 15247 15276 15461 17050 17847 19360 19365 19462 19982 20664 33713 8442
## [23353] 9504 11847 11854 11882 13603 13970 14885 14893 18959 21140 21145 22420
## [23365] 26749 16165 16314 16809 16938 17112 17312 6584 13565 13624 15610 19588
## [23377] 19592 20612 24099 19590 19744 19857 19906 19917 21594 20156 25630 25873
## [23389] 26175 26187 26198 26201 26205 26220 26223 26267 26410 26463 26503 26510
## [23401] 26533 26683 26685 26723 26734 26756 26765 26878 26892 26909 26935 26940
## [23413] 27076 27100 27122 27176 27231 27288 27377 27405 27484 27521 27611 27648
## [23425] 27670 27808 27951 27987 28112 28132 28138 28159 28261 28269 28301 28303
## [23437] 28456 28457 28460 28461 28462 28464 28465 28604 28605 28606 28607 28780
## [23449] 28781 28782 28783 28910 28912 28913 29007 29008 29010 29136 29140 29141
## [23461] 29278 29279 29280 29405 29407 29409 29546 29547 29548 29672 29675 29677
## [23473] 29805 29806 29807 29808 29847 29926 29928 30038 30039 30040 30144 30146
## [23485] 30266 30267 30268 30269 30403 30406 30407 30553 30554 30701 30703 30704
## [23497] 30705 30875 30877 30879 31056 31057 31059 31061 31062 31063 31064 31065
## [23509] 31337 31338 31340 31341 31342 31343 31485 31486 31596 31598 31700 31702
## [23521] 31777 31778 31842 31843 31914 31915 32129 32130 32326 32327 32329 32331
## [23533] 32332 32560 32561 32563 32565 32567 32767 32769 32770 32771 32773 32774
## [23545] 32776 32987 32988 32989 32991 32992 32993 33193 33195 33196 33197 33199
## [23557] 33201 33537 33538 33540 33541 33714 33715 33803 33804 33805 33806 34148
## [23569] 34151 34152 34153 34154 34155 34367 34369 34370 34371 34373 34374 34375
## [23581] 34376 34627 34628 34629 34630 34632 34634 34635 34637 34711 34713 34715
## [23593] 34953 34954 34955 34956 34957 34959 34960 35150 35151 35152 35154 35155
## [23605] 35157 35158 35159 35162 35356 35357 35358 35361 35363 35529 35531 23435
## [23617] 25137 35528 2231 8288 18823 46 59 62 84 105 175 186
## [23629] 298 302 307 313 2230 2232 2233 3501 3502 3504 3624 3625
## [23641] 3627 3628 6670 6720 10188 10206 10246 10766 29193 35240 1230 1400
## [23653] 3192 3275 3416 3661 3703 3827 3925 4016 4403 5081 5202 6304
## [23665] 6308 6391 6628 6639 6699 6710 6741 6750 6782 7005 7208 7347
## [23677] 7468 7639 7660 7704 7800 7819 7825 7966 7986 8060 8559 8997
## [23689] 9057 9458 9526 9652 9962 16601 16774 16775 16915 17023 17116 17258
## [23701] 17376 17493 17508 17765 17885 17894 18071 18331 19035 19103 19104 19206
## [23713] 19246 19422 19872 20171 20434 20633 20971 21054 21096 21100 21170 21211
## [23725] 21225 21271 21279 21327 21395 21397 21487 21503 21512 21515 21559 21561
## [23737] 21566 21613 21625 21661 21671 21755 21816 21831 21894 21896 21943 21952
## [23749] 21999 22010 22052 22175 22466 22547 22694 22855 23497 23511 23651 23668
## [23761] 23717 23721 24013 24055 24063 24066 24076 24203 24205 24801 24814 24929
## [23773] 24940 24948 25166 25203 25212 25424 25448 25476 25502 25552 25729 25781
## [23785] 25968 26025 26251 26349 26783 28168 32413 60 1240 1395 1907 2092
## [23797] 2267 2318 2435 2711 2734 2776 3071 3286 4878 5096 5105 5351
## [23809] 5739 6312 6319 7806 8313 8465 8466 9406 10378 12628 12635 12660
## [23821] 12838 12863 12895 13681 15050 15532 15687 15707 15986 16122 16138 16150
## [23833] 16268 16450 16559 16588 16625 16656 16756 16760 16988 17118 17248 17262
## [23845] 17393 17396 17408 17500 17504 17844 17902 17994 18091 18097 18217 19404
## [23857] 20356 20894 26372 33058 33249 33352 33468 33595 34810 35425 165 10753
## [23869] 11375 12808 12930 13038 13099 13250 13352 13389 14471 14580 14690 14767
## [23881] 14776 15966 20091 20170 20194 20262 20537 20640 20705 20783 20784 20862
## [23893] 20922 20977 20988 20997 21038 21051 21108 21486 21580 21679 21728 21774
## [23905] 22474 22552 22564 22675 22680 22685 22700 22712 22722 22725 22840 22844
## [23917] 22848 22852 22867 22869 23000 23008 23022 23033 23143 23248 23392 23409
## [23929] 23595 23672 23683 23711 23726 23728 23900 23942 23948 24020 24041 24059
## [23941] 24067 24173 24175 24195 24226 24279 24289 24296 24301 24313 24323 24398
## [23953] 24411 24565 25278 25416 25434 25444 25730 25736 25745 25746 25951 25955
## [23965] 25962 26002 26284 26367 26378 26462 26509 26615 26630 26661 26858 27334
## [23977] 27754 27861 28366 28367 28369 28373 28498 28500 28505 28696 28700 28705
## [23989] 29590 29727 29962 30459 30754 30756 30757 30933 30936 30938 31121 31122
## [24001] 31123 31125 31228 31229 31230 31231 31402 31728 32409 32410 32412 32623
## [24013] 32624 32627 32629 32842 32845 32846 33050 33350 33597 33816 33819 33820
## [24025] 33981 33985 33988 33990 33991 34211 34212 34213 34215 34216 34221 34450
## [24037] 34452 34453 34458 34459 34679 34813 34814 35019 35021 35022 35237 35418
## [24049] 35424 14094 14789 15053 16007 16152 16238 16333 16451 1144 1420 2675
## [24061] 2680 3503 3847 4625 5262 6956 8449 10557 10636 11664 13409 14253
## [24073] 14366 14475 14544 14554 14939 15033 16449 16551 17148 17670 17766 17987
## [24085] 18230 18336 19097 19229 19247 19377 19414 19560 19572 21032 24542 26647
## [24097] 26833 27418 28697 28701 28940 29189 29452 29589 29955 29956 30080 30761
## [24109] 31234 32626 32839 32844 33053 33055 33246 33250 33253 33353 33354 33357
## [24121] 33467 34457 34809 35020 3626 333 6609 32406 33992 2103 6653 6659
## [24133] 19826 20333 20595 20641 20647 21056 311 1478 2258 2288 2303 2316
## [24145] 2419 2645 2652 2673 2755 2759 2774 2834 2844 3698 3709 3838
## [24157] 3841 3908 4585 5006 5089 5095 5230 5329 5376 5377 5379 5382
## [24169] 5542 5543 5578 5693 5758 6063 6102 6704 6958 7016 7157 7203
## [24181] 7204 7213 7456 7461 7488 7530 7690 7693 7983 8428 8444 8736
## [24193] 8821 8829 9217 9306 9312 9374 9385 9551 9799 10067 10455 10573
## [24205] 11106 11283 12210 12218 12231 12332 12362 12365 12493 12511 12523 12632
## [24217] 12786 12914 13057 13065 13100 13354 13540 13544 13655 13709 13714 13730
## [24229] 13842 13878 13883 13894 13911 14030 14056 14079 14193 14365 14759 15199
## [24241] 15203 15316 15343 15358 15382 15505 15533 15564 15718 15936 15953 16544
## [24253] 16603 16623 16654 16748 16766 16767 16779 16786 16800 16900 16908 17038
## [24265] 17045 17120 17145 17265 17267 17271 17370 17371 17381 17384 17401 17502
## [24277] 17510 17605 17900 17982 18118 18207 18212 18214 18226 18236 18237 18334
## [24289] 18340 18377 18445 18450 18471 18562 18570 18845 19198 19201 19240 19372
## [24301] 19384 19548 19581 19654 19761 19791 19801 20092 20181 20209 20281 20455
## [24313] 20546 20590 20594 20636 21155 21224 21230 21446 21449 23171 23532 24842
## [24325] 24843 24974 25001 25012 25022 25219 25482 25740 26018 31796 33461 4596
## [24337] 6294 6323 9198 9211 9229 9304 15935 1132 1140 4099 4375 4641
## [24349] 4893 4992 5083 5106 5111 5215 5330 5538 5573 5576 5581 5731
## [24361] 5884 6089 6134 6292 6303 6324 6329 6414 6603 6636 6684 6771
## [24373] 6982 7027 7481 7942 7964 8067 8085 8091 8155 8276 8327 8452
## [24385] 8689 8720 8934 9812 10053 10387 10546 10856 11486 11547 11555 11571
## [24397] 11646 11666 11679 11901 12095 12203 12220 12336 12471 12498 12861 12954
## [24409] 13048 13234 13407 13686 13699 13726 13903 13907 14038 14076 14347 14667
## [24421] 15355 15530 15696 16107 23559 23570 24828 24831 24865 25000 25213 25499
## [24433] 25557 25684 25711 25715 25757 25772 25821 25971 25975 25978 26027 26343
## [24445] 26396 26978 27029 27542 27710 27878 28216 28370 29055 29195 29458 29587
## [24457] 10450 19386 20348 22704 28047 28702 32407 33601 33821 3152 4606 5244
## [24469] 5687 7183 10765 14017 14224 16732 17028 21965 3200 14062 14257 18914
## [24481] 16002 18085 18323 18574 18666 18828 19015 19220 19249 19380 19409 19543
## [24493] 19567 19584 19755 19775 16659 17495 18475 18834 18942 19252 35417 35420
## [24505] 18932 24015 24281 24566 24848 24933 25513 25725 25799 25805 25960 25992
## [24517] 26013 26352 26385 26468 26490 26540 26585 26609 26622 26636 26795 26815
## [24529] 26843 26855 26968 27014 27017 27025 27166 27179 27182 27307 27319 27331
## [24541] 27433 27441 27472 27543 27554 27570 27706 27711 27779 27868 27889 27906
## [24553] 27923 28023 28036 28042 28066 28079 28087 28199 28200 28206 28210 28215
## [24565] 28223 28225 28368 28371 28372 28374 28375 28499 28501 28502 28503 28504
## [24577] 28506 28698 28699 28703 28704 28706 28835 28836 28837 28838 28839 28840
## [24589] 28939 28941 28942 28943 29051 29052 29053 29054 29056 29187 29188 29190
## [24601] 29191 29192 29194 29330 29331 29332 29333 29334 29453 29454 29455 29456
## [24613] 29457 29459 29588 29591 29592 29717 29718 29719 29720 29721 29722 29723
## [24625] 29724 29725 29726 29728 29729 29826 29827 29828 29874 29875 29876 29957
## [24637] 29958 29959 29960 29961 30077 30078 30079 30081 30186 30187 30320 30321
## [24649] 30322 30456 30457 30458 30460 30461 30590 30591 30592 30593 30755 30758
## [24661] 30759 30760 30932 30934 30935 30937 31124 31232 31233 31399 31400 31401
## [24673] 31530 31531 31532 31639 31640 31726 31727 31795 31797 31869 31959 32052
## [24685] 32053 32180 32408 32411 32414 32620 32621 32622 32625 32628 32630 32840
## [24697] 32841 32843 33051 33052 33054 33056 33057 33244 33245 33247 33248 33251
## [24709] 33252 33348 33349 33351 33355 33356 33462 33463 33464 33465 33466 33596
## [24721] 33598 33599 33600 33817 33818 33822 33982 33983 33984 33986 33987 33989
## [24733] 34210 34214 34217 34218 34219 34220 34451 34454 34455 34456 34460 34461
## [24745] 34462 34678 34680 34811 34812 34815 34816 35018 35023 35024 35025 35026
## [24757] 35232 35233 35234 35235 35236 35238 35239 35416 35419 35421 35422 35423
## [24769] 26420 2498 2927 3058 3123 3133 3195 3251 3412 3552 3693 4373
## [24781] 4411 4568 4618 4756 4759 5117 5127 5349 5836 5838 6057 6237
## [24793] 6240 6241 6280 6355 7030 7857 8080 8160 8214 8279 8502 8554
## [24805] 8564 8621 8624 8981 8992 9201 9377 9404 9459 9519 10173 10374
## [24817] 10382 11543 12763 13198 13372 13412 13493 13496 13508 13669 13915 14547
## [24829] 14655 14658 14663 14855 15037 15679 15913 15988 16099 16151 16222 16270
## [24841] 18758 20999 22476 25948 26031 26278 26659 26971 27926 28032 28730 28862
## [24853] 29834 29994 30985 32083 32404 32405 32691 32692 32892 33114 34279 34529
## [24865] 34531 34864 35284 35479 1970 2049 2059 2063 2065 2124 2180 2241
## [24877] 2368 2377 2403 2496 2497 2502 2511 2571 2587 2668 2669 2727
## [24889] 2733 2745 2792 2819 2882 2889 2922 2930 2951 2955 3051 3141
## [24901] 3206 3341 3347 3419 3428 3446 3549 3725 3853 3920 4227 4247
## [24913] 4310 4316 4333 4338 4340 4346 4380 4388 4410 4562 4570 4598
## [24925] 4611 4615 4644 4723 4740 4769 4779 4812 4814 4820 4877 4880
## [24937] 4963 4973 5004 5122 5135 5138 5205 5227 5255 5333 5340 5515
## [24949] 5555 5714 5844 5892 6231 6262 6338 6358 6417 6643 6647 6856
## [24961] 6857 6885 6915 6934 6967 6984 7002 7023 7147 7184 7209 7211
## [24973] 7320 7361 7362 7467 7501 7521 7843 7863 7969 7979 8106 8195
## [24985] 8199 8290 8321 8328 8488 8547 8552 8604 8731 8743 8838 8939
## [24997] 9013 9089 9099 9102 9107 9111 9119 9212 9222 9232 9240 9314
## [25009] 9315 9391 9392 9478 9486 9532 9553 9557 9637 9640 9660 9727
## [25021] 9733 9821 9831 9851 9854 9951 9959 10059 10063 10066 10179 10184
## [25033] 10192 10203 10208 10221 10230 10243 10388 10394 10405 10467 10480 10553
## [25045] 10566 10645 10676 10747 10748 10755 10768 10850 10879 10986 10989 11003
## [25057] 11094 11108 11126 11234 11252 11271 11353 11437 11438 11439 11480 11546
## [25069] 11548 11562 11577 11638 11653 11656 11675 11681 11750 11758 11764 11812
## [25081] 11816 11831 11834 11894 11915 11918 11971 11973 11979 11998 12072 12088
## [25093] 12100 12171 12180 12188 12196 12214 12229 12347 12363 12366 12370 12385
## [25105] 12488 12617 12630 12653 12847 12856 12868 12915 12918 12931 12949 12951
## [25117] 13046 13059 13061 13095 13102 13215 13216 13244 13366 13398 13405 13500
## [25129] 13542 13554 13670 13700 13721 13864 13876 14086 14241 14246 15326 15339
## [25141] 15535 15552 19068 28534 31439 7462 7707 25463 32690 2116 2878 2921
## [25153] 3049 3127 3128 3409 3813 4324 4360 4363 4557 4897 4959 5130
## [25165] 5133 5200 5225 5343 5345 5534 5547 5696 5712 5717 5721 5724
## [25177] 6607 6625 6804 6807 6843 6992 7496 7687 7803 7876 7958 7960
## [25189] 8694 8698 9066 9303 9469 10040 10186 10841 10959 11096 11442 12075
## [25201] 12798 12905 13084 13219 13488 13518 13519 13658 14042 14202 14345 14348
## [25213] 14352 14555 14581 14653 14665 14676 14747 14862 14877 14938 14942 15045
## [25225] 15055 15172 15193 15691 15862 15982 16106 16561 16653 16991 17156 17259
## [25237] 17587 17824 17991 18200 18756 18820 18917 18939 18952 19100 19275 19400
## [25249] 19428 19723 19731 19780 19887 19949 20011 20032 20583 20785 20899 20906
## [25261] 20908 20996 21033 21213 21219 21881 21938 21939 22238 22298 22312 22313
## [25273] 22839 22841 23241 23528 23730 24545 24552 24953 25182 25230 25238 25709
## [25285] 25778 25800 25957 26335 26379 26562 26577 26810 26987 26993 27010 27154
## [25297] 27170 27175 27296 27557 27694 27724 27755 27767 27859 28058 28064 28085
## [25309] 28218 28219 28403 28535 28536 29762 29897 30644 30645 30795 31440 31608
## [25321] 31609 31665 31958 32228 33111 33302 33303 33437 34043 34044 34278 34526
## [25333] 34865 34866 35070 35071 35283 1963 2055 2113 2159 2381 2499 2500
## [25345] 2501 2614 2620 2799 2804 2891 2917 6971 7984 8103 17747 25451
## [25357] 27738 28016 28175 29089 29993 30497 30498 30646 30796 30798 30799 30801
## [25369] 30984 31270 31271 31441 31957 32229 32689 34527 34697 13660 13850 16886
## [25381] 34530 2157 2369 2541 3335 3339 3360 4809 5684 6790 6850 6896
## [25393] 7197 7319 7328 7333 7334 7510 8575 9067 9461 10379 10547 10669
## [25405] 11559 13208 13355 15360 15681 15683 15984 15994 16095 16326 18682 19047
## [25417] 19065 30982 32891 33112 2370 3694 3811 4192 4215 4220 4224 4232
## [25429] 4261 4610 4640 4750 4774 4810 4815 4983 5129 5207 5253 5258
## [25441] 5364 5366 5511 5548 5703 5748 6062 6103 6224 6343 6604 6820
## [25453] 7486 7661 7935 7943 7948 8066 8181 8282 8503 8579 8692 8701
## [25465] 8812 8998 9055 9074 9077 9203 9299 9380 10839 11241 12376 13347
## [25477] 15992 16540 17884 18316 18327 30981 31269 31956 32084 10078 10236 11669
## [25489] 12655 16262 2371 2504 2526 4748 9093 9471 10853 13489 18484 19728
## [25501] 19878 2185 2894 3332 5008 5246 5356 5384 5522 5561 5874 5881
## [25513] 6075 7010 7166 7214 7335 7359 7480 7484 7504 7520 7653 7657
## [25525] 7686 7844 8593 8922 8989 9794 9949 11142 11145 12176 12193 12325
## [25537] 13672 13697 13857 14027 14093 14210 14248 14359 14367 15048 15187 15202
## [25549] 15333 15546 15558 15562 15690 15694 15724 15874 15882 15889 16008 16145
## [25561] 16259 16338 16638 16736 16884 16909 17256 17280 17385 17990 18077 18080
## [25573] 18211 18220 18250 18356 18443 18448 18449 18577 18753 18767 18817 19101
## [25585] 19273 19288 19290 19295 19305 19381 19393 19403 19415 19419 19433 19445
## [25597] 19448 19550 19735 19777 19805 19824 20187 20464 20525 20526 20532 20544
## [25609] 20585 20642 20904 21043 21045 21049 21229 21272 21405 21454 21485 21562
## [25621] 21576 21713 21997 22046 22106 22232 22387 22558 22668 22687 22879 22892
## [25633] 23006 23017 23020 23244 23372 23515 23557 23664 23897 24809 24927 25024
## [25645] 25192 25441 25512 25819 26830 26975 26981 27303 27448 27573 29368 30219
## [25657] 30800 33113 33304 34528 35068 8312 9011 4254 5528 5861 6087 6101
## [25669] 6227 6253 6331 6348 6402 6617 6833 7191 7676 7835 7865 7944
## [25681] 8081 8187 8527 8576 8914 10182 11346 12772 12851 13382 23021 23387
## [25693] 23513 23660 23719 24433 24689 24802 24813 24852 24937 25199 25457 25504
## [25705] 25533 25706 25810 25827 25828 25989 26404 26469 26797 26803 26872 26965
## [25717] 26979 27183 27194 27270 27318 27320 27431 27569 27799 28402 28731 28732
## [25729] 28733 28863 28971 29490 29624 29625 29761 29763 7020 7645 10153 13401
## [25741] 14022 15974 18739 19055 20274 20460 21274 23582 26014 26994 31868 31955
## [25753] 35478 3146 5222 7140 7342 7346 7360 8056 10975 12669 12794 13897
## [25765] 14010 14196 15315 17976 19096 16627 16799 17003 17252 17378 21342 20242
## [25777] 20433 21557 28729 30353 30354 30797 30983 31158 35069 35072 23135 23147
## [25789] 23219 24582 24959 24987 26350 30499 2932 3343 3429 3557 3777 3887
## [25801] 3997 4624 4949 5041 5632 6022 6187 8129 8378 8487 8636 8963
## [25813] 9265 12441 12580 12703 12795 12810 12990 13031 13147 13189 13292 13575
## [25825] 14543 14675 14766 14769 14879 14941 16626 17137 17146 20193 21046 27052
## [25837] 29821 31380 32037 32043 32161 32597 32814 33225 33739 33950 33951 35199
## [25849] 8 9 263 270 285 352 365 429 454 542 545 639
## [25861] 642 717 721 815 913 923 932 1007 1082 1304 1306 1309
## [25873] 1402 1416 1487 1492 1511 1651 1654 1730 1820 1833 2007 2165
## [25885] 2333 2334 2335 2336 2389 2390 2452 2453 2455 2588 2626 2661
## [25897] 2705 2719 2736 2739 2833 2863 2913 3006 3226 3305 3425 3451
## [25909] 3736 3737 3950 3955 3957 4013 4019 4030 4037 4039 4081 4160
## [25921] 4166 4171 4601 5181 5186 5238 5497 5499 5504 5613 5669 5811
## [25933] 5827 5917 5960 6011 6029 6045 6055 6161 6191 6427 6459 6469
## [25945] 6484 6512 6566 6568 6734 6745 6753 6776 7096 7123 7130 7133
## [25957] 7240 7256 7286 7293 7295 7298 7306 7308 7310 7430 7450 7453
## [25969] 7608 7622 7623 7631 7633 7766 7783 7787 7794 7917 7922 7930
## [25981] 7932 8029 8142 8228 8239 8242 8247 8266 8349 8375 8379 8399
## [25993] 8402 8496 8501 8512 8537 8640 8653 8666 8667 8672 8757 8773
## [26005] 8786 8807 8856 8905 8953 8974 9023 9028 9040 9121 9126 9128
## [26017] 9129 9131 9146 9162 9267 9332 9358 9447 9496 9500 9566 9586
## [26029] 9604 9608 9671 9675 9692 9698 9702 9784 9787 9863 9869 9872
## [26041] 9893 9897 9900 9908 9916 9917 9979 9992 10020 10124 10131 10134
## [26053] 10258 10274 10276 10285 10288 10289 10292 10293 10300 10303 10311 10317
## [26065] 10323 10325 10339 10348 10350 10362 10579 10598 10622 10795 10826 10889
## [26077] 10943 11012 11030 11051 11061 11076 11147 11156 11195 11214 11226 11328
## [26089] 11330 11404 11405 11422 11501 11510 11511 11591 11617 11692 11706 11717
## [26101] 11795 11802 11857 11876 11925 11946 11951 12029 12030 12032 12037 12043
## [26113] 12055 12060 12065 12132 12139 12143 12166 12276 12279 12307 12398 12434
## [26125] 12449 12534 12569 12595 12671 12698 12733 12750 12767 12825 12883 12976
## [26137] 13009 13023 13106 13162 13166 13178 13190 13284 13295 13301 13305 13324
## [26149] 13415 13427 13441 13452 13480 13570 13578 13596 13609 13640 13752 13760
## [26161] 13767 13777 13807 13812 13838 13932 13948 13951 14050 14065 14219 14252
## [26173] 14405 14415 14425 14435 14455 14464 14474 14553 14576 14669 14682 14688
## [26185] 14765 14779 14854 14860 14865 14869 14949 14955 14962 15063 15067 15166
## [26197] 15206 15209 15214 15217 15313 15345 15346 15348 15519 15520 15529 15553
## [26209] 15727 15975 15993 16113 16234 16343 16416 16442 16565 16648 16755 16879
## [26221] 16986 16994 17039 17115 17121 17144 17251 17264 17379 17388 17402 17489
## [26233] 17492 17604 17656 17664 17666 17742 17748 17767 17823 17832 17891 17892
## [26245] 17907 17975 17989 18013 18076 18078 18116 18196 18317 18320 18325 18335
## [26257] 18370 18444 18453 18473 18600 18615 18661 18741 18825 19123 19214 19216
## [26269] 19390 19416 19443 19541 19564 19656 19663 19781 19876 19883 19951 20013
## [26281] 20016 20017 20175 20180 20342 20691 20694 20699 20701 20716 20896 21037
## [26293] 21095 21107 21158 21171 21210 21214 21228 21237 21326 21328 21329 21338
## [26305] 21504 21506 21511 21514 21568 21631 21667 21675 21716 21725 21765 21819
## [26317] 21840 21880 21892 21900 21904 21942 21951 21956 21960 21963 21998 22000
## [26329] 22005 22009 22048 22063 22070 22072 22112 22122 22126 22164 22167 22172
## [26341] 22230 22301 22363 22435 22554 22662 22690 22846 23012 23116 23155 23216
## [26353] 23222 23358 23496 23500 23508 23548 24404 24540 24548 24679 24793 24846
## [26365] 24864 24932 24938 25006 25231 25421 25524 25713 26238 26309 26545 26556
## [26377] 26794 26959 27130 27264 27297 27425 27466 27544 27590 27685 27739 27746
## [26389] 27758 27873 27887 28026 28165 28319 28539 28543 28650 28795 28919 29024
## [26401] 29025 29026 29157 29158 29159 29160 29163 29165 29302 29304 29305 29426
## [26413] 29427 29566 29567 29568 29697 29700 30162 30292 30293 30427 30725 30900
## [26425] 31101 31195 31369 31370 31374 31509 31512 31620 31621 31622 31624 31712
## [26437] 31855 31939 32040 32373 32589 32809 33024 33223 33321 33401 33574 33740
## [26449] 33742 33944 33945 34188 34190 34415 34418 6 78 218 376 440
## [26461] 2753 2835 3355 4749 6489 6729 7071 7301 7552 7726 8384 21902
## [26473] 22121 23507 23578 23656 23675 23727 24030 24056 24220 24416 24805 25256
## [26485] 25546 25719 2572 14067 15031 15041 15070 15844 16003 16147 18679 18737
## [26497] 22909 27038 31511 80 222 239 276 362 558 647 725 814
## [26509] 818 822 829 917 922 928 929 1003 1011 1015 1019 1021
## [26521] 1093 1097 1101 1103 1169 1171 1182 1185 1188 1268 1271 1296
## [26533] 1305 1307 1308 1403 1404 1422 1656 1695 1697 1733 1735 1829
## [26545] 1836 1840 1892 1912 2006 2009 2454 2515 2561 2689 2700 2781
## [26557] 2838 2854 2931 2947 3004 3005 3118 3122 3225 3237 3309 3325
## [26569] 3357 3418 3421 3452 3565 3573 3784 3802 3884 3896 3993 4001
## [26581] 4074 4086 4088 4095 4112 4131 4141 4152 4467 4478 4516 4529
## [26593] 4619 4623 4955 5046 5171 5172 5476 5494 5624 5640 5791 5817
## [26605] 5957 5959 6017 6040 6174 6207 6473 6487 6560 6650 6666 6726
## [26617] 7045 7050 7070 7288 7394 7587 7605 7618 7720 7740 7750 7754
## [26629] 7779 7883 7887 7899 7904 7905 7921 8004 8017 8021 8038 8123
## [26641] 8131 8243 8258 8371 8412 8510 8513 8549 8787 8895 8978 9912
## [26653] 10106 10314 10316 10321 10358 10432 10440 10516 10520 10522 10529 10596
## [26665] 10602 10605 10620 10698 10700 10701 10803 10811 10831 10919 10922 10932
## [26677] 11073 11178 11303 11312 11332 11399 11410 11414 11417 11516 11517 11522
## [26689] 11607 11610 11708 11734 11787 11867 11872 11930 12041 12053 12149 12157
## [26701] 12283 12303 12432 12438 12448 12576 12584 12690 12692 12710 12713 12806
## [26713] 12879 12992 13002 13004 13017 13130 13175 13279 13335 13437 13454 13604
## [26725] 13805 13957 14044 14461 14465 14473 14556 14575 27588 2013 2071 2853
## [26737] 2942 2953 3092 3097 3170 3233 3316 4057 4513 4525 4528 4738
## [26749] 4739 4744 4780 4945 5597 6579 7893 7996 8544 16353 16427 17737
## [26761] 17829 18662 18746 18950 19021 19027 19126 19573 19941 19943 19960 20028
## [26773] 20247 20779 20781 21673 22246 22309 22370 22383 22453 22461 22463 22468
## [26785] 22556 22562 22574 22577 22581 22705 22730 22850 22876 22882 22895 23350
## [26797] 23538 24022 24044 24189 24190 24210 24288 24294 24295 24317 24568 25260
## [26809] 25458 25464 25548 25550 25682 25768 25807 25838 25996 26290 26376 26409
## [26821] 26432 26525 26552 26597 26639 26658 26788 27732 27752 27908 28180 28192
## [26833] 28196 28202 28227 28235 28320 28321 28544 28545 28547 28651 29565 29701
## [26845] 29820 29861 29941 29942 29945 30057 30060 30061 30159 30161 30163 30165
## [26857] 30166 30285 30286 30296 30424 30426 30428 30429 30584 30585 30586 30588
## [26869] 30589 30724 30730 30898 30899 30901 30902 30903 30908 30909 31094 31095
## [26881] 31096 31097 31100 31102 31103 31192 31193 31197 31198 31202 31203 31379
## [26893] 31856 31936 31938 31942 32035 32036 32041 32155 32156 32157 32159 32363
## [26905] 32365 32371 32372 32375 32591 32594 32596 32805 32810 33025 33573 33735
## [26917] 33738 33741 33745 33746 33937 33939 33940 33946 34183 34184 34185 34186
## [26929] 34187 34410 34413 34416 34419 34420 34421 34422 34671 34761 34762 34763
## [26941] 34765 34766 34767 34768 34769 34771 34972 34973 34975 34976 34977 34979
## [26953] 35393 1288 2058 2158 2337 2528 2542 2670 3956 5501 5672 5927
## [26965] 6156 6164 6527 6536 6576 6596 6663 7439 7885 7928 8244 8256
## [26977] 9189 11081 13588 15973 16433 16436 16439 16560 16571 16622 16643 16743
## [26989] 16894 17582 18652 19016 19233 19956 20019 20204 21218 21331 22891 23168
## [27001] 23262 23395 23398 23554 23573 24536 24594 24710 24716 24821 24923 24988
## [27013] 25239 25541 25691 25750 25787 25801 25990 25993 26515 26570 26772 26814
## [27025] 26831 26862 26868 27047 27156 27219 27237 27275 27719 27777 28541 28649
## [27037] 28796 29156 29300 29303 29943 30291 31194 31372 31377 31505 31618 31623
## [27049] 33403 34974 34980 35190 35192 35198 35387 356 378 450 926 1013
## [27061] 2332 2640 3007 3437 3582 3584 3735 3794 3879 3890 3951 3963
## [27073] 4023 4044 4109 4186 4454 4470 4501 4519 4521 4550 4629 4632
## [27085] 4730 4763 4862 4943 5060 5158 5179 5189 5208 5239 5478 5611
## [27097] 5647 5790 5795 5939 5941 6016 6182 6465 6683 6688 6716 6731
## [27109] 6737 7064 7067 7099 7107 7112 7243 7245 7253 7258 7262 7277
## [27121] 7371 7383 7399 7406 7560 7563 7714 8011 8015 8118 8218 8354
## [27133] 8634 8649 8760 8766 8767 8872 9149 9158 9176 9564 9588 9758
## [27145] 9866 9889 9905 10010 10013 10024 10120 10127 10129 10264 10301 10305
## [27157] 10319 10333 10336 10353 10489 10531 10582 10684 10708 10713 11425 13830
## [27169] 13958 14058 14227 14438 15080 15173 15204 15211 15359 15365 15369 15371
## [27181] 15373 15525 15534 15541 15550 15699 15907 15983 16005 16118 16134 16254
## [27193] 16339 16349 16431 16440 16569 16579 16612 16645 16655 16785 16788 16920
## [27205] 16923 17141 17151 17268 17270 17386 17387 17499 17511 17594 17597 17663
## [27217] 17669 17674 17757 17759 17761 17834 17839 17896 17904 17996 18006 18011
## [27229] 18089 18104 18109 18113 18208 18210 18231 18332 18338 18351 18352 18374
## [27241] 18459 18464 18480 18485 18489 18622 18628 18631 18633 18659 18672 18674
## [27253] 18676 18677 18742 18770 18771 18816 18837 18847 18924 18930 18936 18946
## [27265] 18951 19018 19029 19030 19034 19037 19122 19132 19138 19221 19254 19402
## [27277] 19412 19453 19457 19551 19557 19566 19570 19645 19650 19660 19665 19667
## [27289] 19672 19785 19789 19802 19807 19813 19822 19879 19894 19896 19900 19963
## [27301] 20022 20042 20099 20107 20191 20246 20369 20450 20530 20575 20593 20724
## [27313] 20840 20848 20912 22047 22107 22180 22243 22253 22310 22389 22452 22563
## [27325] 22688 22702 22864 22873 23150 23162 23236 23247 23249 23255 23364 23385
## [27337] 23391 23521 23527 23561 23567 23647 23681 23715 23720 23891 23918 24033
## [27349] 24079 24212 24298 24312 24422 24430 24573 24576 24590 24700 24707 24719
## [27361] 24796 24811 24824 24826 24834 24854 24858 24866 24934 24942 24946 24954
## [27373] 24962 24972 24977 24998 25005 25010 25187 25205 25210 25221 25242 25250
## [27385] 25253 25270 25273 25274 25473 25479 25500 25505 25509 25528 25537 25551
## [27397] 25555 25743 25760 25765 25776 25789 25797 25804 25972 25976 25980 26019
## [27409] 26033 26294 26383 26435 26445 26496 26564 26593 26599 26813 26820 26844
## [27421] 26977 27016 27019 27191 27220 27227 27236 27271 27298 27335 27344 27353
## [27433] 27439 27453 27566 27578 27595 27712 27714 27741 27793 27866 27883 27918
## [27445] 28038 28076 28240 28322 28542 28546 28549 28648 28652 28653 28793 28794
## [27457] 28797 28920 29027 29028 29161 29162 29164 29166 29299 29428 29429 29430
## [27469] 29564 29699 29860 29944 30062 30063 30160 30167 30284 30289 30290 30294
## [27481] 30295 30422 30423 30425 30582 30583 30727 30728 30906 31196 31375 31506
## [27493] 31507 31616 31714 31940 31943 32038 32042 32154 32158 32368 32374 32376
## [27505] 32592 32808 33021 33026 33221 33222 33224 33322 33325 33398 33400 33402
## [27517] 33571 33572 33575 33577 33736 33737 33743 33747 33938 33947 33949 34180
## [27529] 34411 34670 34758 34770 34981 35191 35195 35196 35197 35200 35388 35389
## [27541] 35390 35391 35392 3160 9581 10611 11861 13445 15864 16218 16249 16257
## [27553] 17383 19139 28538 1563 2187 3734 4051 5495 5503 5940 6773 7102
## [27565] 7115 7118 7433 7548 7556 7571 7590 7610 8679 8754 8764 8860
## [27577] 8865 9137 9242 9433 13737 13814 14070 15084 15177 15342 15493 15521
## [27589] 16256 16418 16880 16903 17036 17043 17157 18760 19420 20114 20167 20207
## [27601] 20208 20253 21629 22055 23580 25956 5466 5469 5653 7924 12839 14214
## [27613] 15170 15678 15685 15836 15852 15980 16004 16126 19405 20440 20643 20789
## [27625] 23679 25163 25180 25184 25452 813 9253 2171 11385 12878 13254 13302
## [27637] 13468 13593 13745 14068 15380 25216 26812 26838 29301 29698 9891 12270
## [27649] 12272 12277 12593 18618 28548 20037 7595 9690 14073 14078 14087 21332
## [27661] 33324 21336 22443 22454 22678 32377 15332 15504 17654 17374 33397 22711
## [27673] 22868 22870 23007 23125 23132 23226 23232 23367 23373 23535 24303 24399
## [27685] 24555 24691 25489 25700 25940 25964 26005 26026 26459 26804 27290 27445
## [27697] 27455 27572 28059 28209 28540 29859 29940 30058 30059 30164 30168 30287
## [27709] 30288 30430 30587 30726 30729 30904 30905 30907 31093 31098 31099 31199
## [27721] 31200 31201 31371 31373 31376 31378 31508 31510 31617 31619 31625 31711
## [27733] 31713 31790 31791 31854 31937 31941 32039 32152 32153 32160 32364 32366
## [27745] 32367 32369 32370 32590 32593 32595 32806 32807 32811 32812 32813 33022
## [27757] 33023 33220 33323 33399 33576 33744 33941 33942 33943 33948 34181 34182
## [27769] 34189 34191 34412 34414 34417 34759 34760 34764 34772 34971 34978 35189
## [27781] 35193 35194 35386 4798 13108 13259 14157 14384 14524 14595 14634 14
## [27793] 75 778 802 1048 1137 1228 1242 1348 1415 1634 1715 1808
## [27805] 2197 2198 2199 2201 2259 2308 2429 2671 2757 3599 3756 4418
## [27817] 6181 6471 6548 6715 6730 6743 7066 8802 8902 9185 9329 9454
## [27829] 9516 9580 9593 9594 9611 9687 9693 9696 9776 9919 10027 10122
## [27841] 10128 10322 10332 10335 10338 10344 10360 10368 10607 10613 10630 10723
## [27853] 10725 10797 10807 10814 10816 10830 10834 10904 10921 10929 10944 10948
## [27865] 10950 11021 11058 11062 11082 11158 11189 11199 11219 11524 11629 11733
## [27877] 11783 11956 12309 12314 12467 12572 12586 12608 12697 12844 12866 12982
## [27889] 13005 13032 13034 13161 13172 13191 13314 13466 13470 13477 13599 13622
## [27901] 13634 13645 13741 13766 13789 13803 13839 13956 13966 13972 14099 14107
## [27913] 14145 14167 14188 14272 14303 14325 14342 14389 14392 14394 14399 14510
## [27925] 14517 14518 14535 14611 14614 14631 14635 14642 14649 14706 14712 14723
## [27937] 14735 14738 14829 14831 14833 14844 14846 14899 14918 14929 14991 14994
## [27949] 15004 15012 15015 15018 15024 15117 15137 15140 15144 15150 15157 15261
## [27961] 15269 15287 15301 15309 15428 15433 15443 15445 15469 15477 15484 15580
## [27973] 15609 15623 15676 15791 15806 15815 15823 15831 15838 15857 15867 15872
## [27985] 15915 16054 16057 16058 16062 16074 16077 16087 16161 16173 16193 16196
## [27997] 16201 16209 16289 16290 16306 16316 16324 16368 16369 16383 16402 16414
## [28009] 16460 16463 16466 16476 16485 16492 16497 16500 16505 16511 16533 16534
## [28021] 16673 16683 16695 16710 16714 16824 16832 16840 16844 16861 16878 16939
## [28033] 16942 16945 16957 16970 17055 17058 17079 17083 17091 17102 17114 17189
## [28045] 17193 17197 17208 17229 17241 17314 17319 17358 17364 17369 17441 17442
## [28057] 17450 17459 17468 17516 17521 17522 17524 17529 17534 17546 17610 17639
## [28069] 17704 17707 17710 17716 17722 17725 17786 17789 17801 17803 17851 17853
## [28081] 17856 17866 17881 17914 17923 17934 17937 17940 17946 17951 18026 18029
## [28093] 18038 18040 18056 18063 18065 18129 18143 18153 18159 18168 18174 18180
## [28105] 18257 18268 18279 18285 18296 18297 18303 18397 18404 18412 18425 18429
## [28117] 18441 18442 18522 18528 18529 18530 18541 18548 18553 18602 18607 18612
## [28129] 18613 18614 18624 18632 18634 18641 18647 18691 18695 18697 18703 18712
## [28141] 18726 18727 18731 18776 18790 18800 18801 18805 18808 18810 18877 18887
## [28153] 18893 18903 18906 18907 18966 18985 18989 19000 19004 19007 19046 19058
## [28165] 19060 19062 19072 19160 19170 19172 19188 19189 19194 19279 19296 19303
## [28177] 19312 19478 19503 19508 19523 19603 19608 19617 19696 19705 19727 19840
## [28189] 19929 19985 20002 20062 20068 20073 20142 20157 20160 20161 20218 20228
## [28201] 20231 20320 20321 20404 20410 20413 20489 20496 20499 20500 20671 20758
## [28213] 20761 20826 20834 20884 20888 20949 20951 21018 21019 21027 21078 21082
## [28225] 21088 21141 21198 21200 21204 21268 21318 21356 21431 21478 21534 21544
## [28237] 21598 21643 21649 21693 21696 21805 21868 21869 21871 21923 21928 21929
## [28249] 21930 21974 21987 21989 22037 22038 22066 22067 22071 22073 22074 22155
## [28261] 22159 22162 22163 22215 22358 22416 22426 22655 22656 22794 22986 22989
## [28273] 23085 23301 23321 23331 23461 23820 23849 24722 24751 24770 24877 24891
## [28285] 24899 25100 25115 25145 25151 25374 25396 25645 25856 26107 26129 26289
## [28297] 26501 26667 26726 26876 26922 27072 27080 27099 27158 27243 27248 27366
## [28309] 27389 27396 27399 27486 27487 27501 27519 27531 27540 27632 27639 27658
## [28321] 27665 27667 27803 27950 27977 28252 28438 28760 28765 28891 28892 28897
## [28333] 29001 29002 29003 29130 29132 29134 29270 29272 29274 29545 29661 29666
## [28345] 29670 31046 31329 31476 31840 32982 33187 33531 33702 33791 33794 34132
## [28357] 34133 34349 34614 34730 74 408 474 920 976 1246 2277 2777
## [28369] 2858 3287 3436 3676 3921 4661 4942 5058 5823 5992 6179 6522
## [28381] 6651 6677 6736 7049 7091 7122 7273 7276 7568 7591 7598 7617
## [28393] 7620 7749 7753 7777 7901 8223 8353 20494 20747 23077 23421 23744
## [28405] 23785 23795 23825 24467 24761 24766 25338 25364 25389 25569 26078 26690
## [28417] 4856 6452 6454 9330 12722 13105 13168 14520 19143 23605 24098 223
## [28429] 327 339 413 476 483 548 553 620 633 710 720 789
## [28441] 798 916 921 939 959 1045 1051 1111 1205 1234 1314 1338
## [28453] 1401 1501 1553 1627 1630 1694 1738 1806 1864 1934 1979 2033
## [28465] 2097 2431 2473 2474 2684 2690 2712 2769 2829 2984 3065 3080
## [28477] 3136 3203 3278 3359 3408 3413 3423 3663 3668 3670 3689 3727
## [28489] 3757 3864 3872 3917 3939 4201 4218 4273 4308 4350 4429 4437
## [28501] 4459 4472 4495 4523 4655 4671 4864 5052 5078 5140 5144 5470
## [28513] 5486 5559 5769 5804 5937 5952 6001 6008 6163 6194 6438 6493
## [28525] 6572 6739 6752 6755 6763 6767 7095 7121 7284 7314 7416 7435
## [28537] 7573 7580 7626 7733 7738 7763 7793 7890 7915 8005 8035 8051
## [28549] 8153 8251 8344 8358 8381 8414 8642 8759 8867 8957 9136 9144
## [28561] 9613 9676 9760 9996 10099 10268 10271 10299 10426 10428 10492 10514
## [28573] 10593 10794 10829 10913 10928 11032 11054 11169 11208 11290 11322 11324
## [28585] 11384 11419 11493 11505 11519 11694 11711 11777 11786 11853 11875 11932
## [28597] 11954 12023 12052 12131 12256 12282 12411 12445 12561 12582 12583 12685
## [28609] 12704 12719 12777 12820 12973 13001 13134 13298 13464 13762 13937 14126
## [28621] 14292 14378 14380 14505 14600 14729 14811 14908 14998 15122 15243 15404
## [28633] 15594 15812 15851 16056 16170 16287 16373 2039 6169 6463 6505 9363
## [28645] 10791 11921 13450 16467 16478 18779 18960 21752 21801 22326 22339 22483
## [28657] 22488 22491 22504 22509 22513 22518 22535 22593 22595 22601 22615 22616
## [28669] 22623 22632 22638 22650 22661 22744 22750 22753 22770 22779 22800 22806
## [28681] 22820 22914 22935 22938 22950 22983 23614 23617 23752 23798 23800 23817
## [28693] 23834 23843 23844 23866 23875 23957 23997 24103 24114 24244 24248 24332
## [28705] 24376 24462 24490 25301 25624 25668 26057 26065 26100 26105 26258 26375
## [28717] 26401 26426 26494 26529 26699 26704 26718 26739 26744 26873 26936 27807
## [28729] 27819 27834 27945 27964 28108 28124 28137 28244 28286 28290 28294 28297
## [28741] 28439 28443 28591 28593 28597 29667 29802 29845 29921 29923 29924 30029
## [28753] 30031 30033 30035 30036 30140 30141 30258 30260 30264 30394 30542 30545
## [28765] 30546 30690 30695 30865 30866 30868 30871 30872 31045 31052 31053 31055
## [28777] 31327 31328 31333 31473 31477 31841 31907 31908 31909 31910 31912 31913
## [28789] 32017 32122 32127 32128 32307 32308 32311 32314 32315 32316 32320 32322
## [28801] 32540 32543 32548 32549 32551 32552 32554 32556 32557 32558 32755 32756
## [28813] 32759 32760 32761 32763 32974 32981 32985 33526 33706 33711 33785 33787
## [28825] 33788 33793 33795 33796 33798 33799 33802 34128 34129 34136 34139 34140
## [28837] 34141 34353 34359 34363 34364 34365 34612 34615 34619 34621 34622 34623
## [28849] 34726 34727 34728 34920 34921 34923 34925 35148 547 713 723 777
## [28861] 1436 3281 4231 5519 6703 8012 10796 10823 10918 11937 13293 13422
## [28873] 13436 13439 14886 15090 15413 15574 16514 16670 17698 18774 18983 19146
## [28885] 19161 19509 19598 19835 19856 21262 21480 22492 24524 24609 24746 24898
## [28897] 25058 25148 25311 25320 25616 25660 26038 26055 26068 26095 26116 26371
## [28909] 26680 26906 26917 27059 27171 28759 28893 28895 29271 29542 29671 30030
## [28921] 30142 30263 30549 31050 31330 31332 31474 31481 31482 31590 31592 31693
## [28933] 31695 31696 31839 31906 32125 32126 32325 32541 32545 32547 32978 33180
## [28945] 33181 34137 34617 34731 34919 35140 35146 35354 35526 68 337 414
## [28957] 467 718 919 950 961 1042 1210 1321 1409 1418 1500 2079
## [28969] 2082 2200 2248 2271 2275 2296 2428 2563 2632 2845 2993 3060
## [28981] 3147 3417 3438 3597 3598 3652 3696 3711 3758 3881 3895 3919
## [28993] 3923 4210 4213 4239 4264 4279 4288 4297 4319 4322 4330 4416
## [29005] 4431 4464 4469 4515 4666 4678 4710 4791 5034 5151 5482 5492
## [29017] 5571 5574 5794 5926 5945 5997 6159 6209 6430 6478 6551 6583
## [29029] 6761 6781 7252 7373 7446 7559 7584 7717 7744 7760 7912 8027
## [29041] 8048 8122 8146 8221 8341 8392 8662 8683 8776 8892 8960 8966
## [29053] 9038 9192 9256 9273 9334 9340 9365 9417 9438 9492 9507 9509
## [29065] 9574 9578 9674 9681 9685 9771 9881 9885 9993 10089 10104 10269
## [29077] 10279 10287 10417 10429 10497 10519 10583 10697 10783 10793 10888 10894
## [29089] 11027 11163 11295 11382 11589 11689 11870 11940 12019 12047 12126 12240
## [29101] 12397 12566 12706 12792 12980 13135 13282 13425 13786 13933 13974 14121
## [29113] 14136 14371 14502 14503 14615 14709 15577 16522 16725 16864 16873 16966
## [29125] 17214 17218 17343 17352 17355 17475 17478 17537 17540 17642 17810 19152
## [29137] 19308 19511 19607 19708 19833 19921 19988 20049 20126 20130 20136 20212
## [29149] 20287 20294 20376 20484 20614 20666 20870 20875 20933 21067 21131 21185
## [29161] 21255 21305 21310 21350 21458 21525 21541 21593 21597 21645 21688 21689
## [29173] 21850 21918 21968 21973 22033 22034 22050 22060 22133 22136 22151 22210
## [29185] 22265 22361 22485 22740 23056 23058 23090 23278 23292 23314 23316 23335
## [29197] 23414 23422 23432 23440 23452 23479 23611 23629 23774 23781 23789 23793
## [29209] 23811 23840 23960 23981 24101 24110 24127 24136 24140 24232 24251 24259
## [29221] 24267 24273 24344 24371 24469 24500 24508 24613 24622 24647 24734 24745
## [29233] 24754 24784 24885 24894 24896 24911 25029 25050 25086 25090 25136 25299
## [29245] 25341 25357 25366 25368 25369 25578 25613 25636 25650 25656 25851 25866
## [29257] 25870 25904 25924 26050 26088 26099 26103 26138 26257 26270 26347 26395
## [29269] 26443 26453 26514 26719 26748 26759 26771 26904 26914 26929 27060 27064
## [29281] 27075 27151 27162 27268 27364 27398 27404 27408 27480 27493 27494 27536
## [29293] 27613 27619 27623 27633 27650 27661 27833 27939 27947 28002 28010 28107
## [29305] 28131 28163 28314 28316 28442 28444 28592 28595 28598 28762 28763 28890
## [29317] 28894 28896 29000 29131 29133 29269 29273 29275 29538 29540 29541 29543
## [29329] 29544 29660 29663 29664 29668 29669 29799 29800 29801 29804 29920 29922
## [29341] 29925 30028 30261 30396 30399 30401 30540 30543 30548 30688 30689 30693
## [29353] 30696 30697 30700 30864 30867 30869 30870 31049 31054 31334 31335 31478
## [29365] 31479 31480 31591 31593 31594 31697 31698 32015 32016 32123 32312 32317
## [29377] 32319 32321 32544 32555 32762 32764 32970 32971 32972 32975 32976 32980
## [29389] 33185 33186 33189 33190 33524 33529 33530 33532 33534 33704 33707 33709
## [29401] 33710 33712 33784 33786 33789 33790 33792 33800 33801 34130 34134 34135
## [29413] 34142 34146 34147 34350 34351 34352 34355 34356 34360 34361 34366 34611
## [29425] 34613 34616 34618 34620 34732 34917 34922 34924 35142 35144 35147 35149
## [29437] 35346 35347 35348 35350 35351 943 4235 9436 10935 13286 14489 17849
## [29449] 21543 21690 22399 22647 23765 23863 24125 29662 1413 1505 1622 1942
## [29461] 2245 2253 2418 2421 2968 3199 3210 3268 3328 3331 3354 3356
## [29473] 4440 4709 5973 6160 6190 6694 8044 9196 9505 10257 10941 11935
## [29485] 12015 13119 14826 15648 15669 16310 16484 16508 16675 16677 16681 16687
## [29497] 16721 18792 20285 20397 20480 20507 20959 21321 21863 22395 22586 22645
## [29509] 22756 23080 23313 15238 15297 15438 15599 15602 15655 16806 16822 17321
## [29521] 18513 19297 25585 25596 8383 6440 25402 26134 26366 26752 27068 31911
## [29533] 12970 16294 21589 21600 21796 22258 22268 22600 22736 27628 27959 29844
## [29545] 19604 19831 33183 3126 6724 8882 12884 14278 15426 12287 21188 3208
## [29557] 19682 13564 21601 22507 26321 28313 28317 28437 28440 28441 28594 28596
## [29569] 28761 28764 29135 29276 29277 29539 29665 29803 30032 30034 30139 30143
## [29581] 30259 30262 30392 30393 30395 30397 30398 30400 30541 30544 30547 30691
## [29593] 30692 30694 30698 30699 30873 30874 31047 31048 31051 31331 31336 31475
## [29605] 31483 31589 31694 31776 32120 32121 32124 32309 32310 32313 32318 32323
## [29617] 32324 32542 32546 32550 32553 32754 32757 32758 32765 32973 32977 32979
## [29629] 32983 32984 33179 33182 33184 33188 33191 33525 33527 33528 33533 33701
## [29641] 33703 33705 33708 33797 34131 34138 34143 34144 34145 34354 34357 34358
## [29653] 34362 34610 34624 34729 34918 35141 35143 35145 35349 35352 35353 35355
## [29665] 4803 6202 6490 6515 8141 8398 10629 11529 12058 12297 12691 12721
## [29677] 12873 13182 13270 13469 13626 13827 14137 14177 14495 15459 32300 25
## [29689] 228 234 265 273 364 370 433 453 516 529 594 737
## [29701] 747 758 765 854 856 925 948 964 1049 1065 1127 1138
## [29713] 1219 1229 1324 1341 1396 1406 1419 1430 1496 1513 1554 1564
## [29725] 1709 1711 1805 1874 1947 2005 2022 2083 2088 2204 2205 2261
## [29737] 2299 2444 2475 2476 2557 2592 2629 2672 2743 2750 2859 3041
## [29749] 3391 3475 3476 3477 3537 3542 3548 3591 3761 3762 3763 3795
## [29761] 3870 4014 4069 4097 4176 4178 4434 4487 4684 4951 4954 5045
## [29773] 5141 5250 5481 5919 5972 5991 6517 6811 6852 6884 6888 6895
## [29785] 6925 6932 6942 6951 7073 7082 7128 7271 7283 7316 7447 7919
## [29797] 8049 8124 8249 8268 8418 8509 8536 8660 8671 8774 8797 8881
## [29809] 8886 8908 8959 9053 9151 9167 9170 9172 9175 9177 9179 9188
## [29821] 9190 9258 9283 9356 9453 9493 9570 9585 9595 9603 9679 9686
## [29833] 9689 9708 9763 9879 9886 9923 9985 10116 10117 10121 10291 10302
## [29845] 10343 10355 10361 10365 10369 10425 10496 10535 10612 10703 10722 10727
## [29857] 10799 10820 10832 10891 10893 10900 10938 11017 11035 11041 11043 11047
## [29869] 11067 11155 11162 11166 11173 11191 11202 11218 11288 11292 11296 11326
## [29881] 11335 11379 11416 11428 11429 11432 11504 11530 11532 11602 11620 11631
## [29893] 11702 11714 11729 11794 11798 11869 11873 11880 11929 11945 11947 11955
## [29905] 12025 12048 12068 12070 12130 12152 12154 12250 12264 12286 12302 12391
## [29917] 12409 12425 12430 12457 12461 12551 12558 12587 12591 12689 12712 12718
## [29929] 12726 12734 12801 12804 12807 12815 12828 12841 12983 13008 13014 13033
## [29941] 13133 13139 13158 13160 13283 13312 13329 13457 13574 13598 13610 13772
## [29953] 13779 13971 13978 14161 14164 14331 14334 14391 14395 14496 14534 14620
## [29965] 14626 14637 14639 14645 14708 14710 14724 14734 14806 14825 14830 14843
## [29977] 14848 14905 14911 14923 14985 15000 15017 15023 15101 15105 15128 15149
## [29989] 15223 15236 15265 15291 15293 15304 15430 15444 15453 15463 15465 15476
## [30001] 15480 15576 15604 15647 15657 15659 15668 15797 15811 15818 15828 15830
## [30013] 15837 15848 15885 15891 16078 16085 16186 16191 16208 16274 16301 16302
## [30025] 16365 16401 16409 16469 16470 16504 16529 16531 16671 16717 16724 16727
## [30037] 16856 16859 16862 16866 16969 16972 16973 16976 16979 17086 17099 17101
## [30049] 17105 17108 17207 17222 17226 17233 17236 17309 17337 17347 17361 17445
## [30061] 17448 17458 17462 17473 17477 17484 17517 17525 17526 17539 17541 17543
## [30073] 17609 17617 17620 17628 17633 17652 17697 17703 17705 17715 17720 17723
## [30085] 17731 17780 17799 17800 17806 17809 17846 17864 17867 17878 17927 17930
## [30097] 17936 17945 18016 18039 18043 18057 18060 18062 18125 18148 18164 18181
## [30109] 18183 18263 18284 18290 18295 18301 18306 18312 18403 18423 18428 18433
## [30121] 18438 18508 18511 18526 18543 18552 18621 18626 18627 18645 18706 18714
## [30133] 18724 18781 18791 18797 18804 18809 18856 18870 18886 18892 18905 18908
## [30145] 18953 18970 18976 18978 18999 19008 19044 19048 19063 19066 19067 19142
## [30157] 19157 19163 19174 19181 19184 19255 19257 19264 19306 19310 19313 19460
## [30169] 19485 19506 19516 19520 19525 19587 19612 19616 19623 19628 19685 19689
## [30181] 19693 19697 19725 19779 19854 19924 19931 19935 19938 19973 19979 19992
## [30193] 20003 20004 20064 20067 20071 20078 20120 20121 20149 20151 20155 20211
## [30205] 20227 20230 20283 20305 20306 20309 20311 20412 20414 20418 20470 20474
## [30217] 20491 20505 20506 20558 20560 20566 20615 20619 20628 20681 20685 20754
## [30229] 20766 20770 20773 20775 20828 20830 20833 20864 20874 20881 20932 20935
## [30241] 20948 21003 21009 21016 21026 21061 21072 21079 21080 21122 21142 21147
## [30253] 21177 21190 21192 21258 21320 21367 21380 21423 21479 21519 21547 21551
## [30265] 21602 21608 21706 21731 21794 21803 21867 21872 21919 21920 21927 21976
## [30277] 22035 22036 22039 22090 22093 22098 22100 22101 22134 22198 22208 22211
## [30289] 22212 22225 22261 22266 22278 22280 22283 22292 22335 22352 22353 22357
## [30301] 22394 22404 22419 22421 22431 22498 22528 22533 22605 22619 22624 22637
## [30313] 22759 22781 22805 22829 22917 22922 22954 22962 22975 23068 23100 23104
## [30325] 23177 23197 23199 23200 23203 23309 23318 23319 23320 23324 23328 23338
## [30337] 23444 23447 23456 23466 23468 23476 23619 23769 23824 23838 23842 23985
## [30349] 23986 24106 24121 24135 24143 24168 24241 24250 24261 24339 24366 24373
## [30361] 24471 24489 24516 24603 24606 24633 24640 24659 24726 24730 24732 24743
## [30373] 24750 24753 24759 24870 24875 24876 24906 24910 24915 25027 25045 25054
## [30385] 25089 25101 25108 25118 25119 25128 25133 25157 25308 25323 25326 25331
## [30397] 25388 25395 25401 25405 25593 25615 25623 25626 25679 25868 25885 25889
## [30409] 25919 26054 26083 26102 26137 26293 26365 26413 26422 26538 26703 26713
## [30421] 26755 26899 26911 27077 27093 27103 27187 27207 27252 27387 27388 27523
## [30433] 27642 27657 27818 27826 27844 27851 27853 27942 27943 27961 27983 27990
## [30445] 28097 28101 28146 28156 28246 28289 28296 28298 28312 28315 28445 28446
## [30457] 28448 28449 28600 28766 28767 28769 28898 28899 28900 28994 28995 28997
## [30469] 28998 28999 29122 29123 29124 29125 29127 29129 29262 29263 29264 29266
## [30481] 29267 29268 29399 29400 29401 29402 29403 29530 29531 29532 29535 29536
## [30493] 29537 29653 29654 29656 29657 29658 29659 29789 29792 29793 29795 29797
## [30505] 29798 29843 29916 29917 29918 29919 30023 30024 30026 30027 30132 30133
## [30517] 30135 30136 30137 30248 30249 30250 30251 30252 30254 30384 30386 30387
## [30529] 30388 30391 30533 30534 30535 30537 30538 30662 30665 30666 30667 30854
## [30541] 30858 31027 31028 31033 31042 31317 31318 31320 31322 31323 31469 31471
## [30553] 31472 31582 31583 31584 31588 31688 31690 31691 31692 31772 31773 31774
## [30565] 31775 31832 31833 31834 31836 31837 31838 31901 31902 31903 31904 31905
## [30577] 32008 32009 32011 32013 32014 32114 32116 32117 32118 32119 32298 32299
## [30589] 32302 32304 32305 32306 32532 32533 32534 32535 32538 32744 32745 32746
## [30601] 32749 32751 32957 32958 32959 32961 32962 32963 32967 32969 33173 33174
## [30613] 33175 33177 33178 33519 33520 33521 33522 33523 33695 33696 33697 33698
## [30625] 33878 33879 33886 33887 33890 34116 34118 34122 34125 34126 34127 34339
## [30637] 34341 34342 34343 34346 34603 34605 34609 34721 34722 34725 34907 34910
## [30649] 34912 34916 35098 35100 35133 35134 35137 35338 35339 35340 35341 35344
## [30661] 35519 35521 35522 35523 368 375 430 514 750 1232 4460 4662
## [30673] 6014 6858 7042 7063 7567 7757 7889 7931 8034 8134 8240 22819
## [30685] 22982 23284 23334 23819 23857 24090 24614 24617 24749 25367 25906 26115
## [30697] 26331 26394 27979 28123 35101 13107 13127 13157 13740 14130 14522 15587
## [30709] 15590 16083 16166 19187 22287 22649 22978 23055 23848 27985 33700 34604
## [30721] 76 232 236 237 240 264 271 278 357 377 421 451
## [30733] 512 526 596 656 669 752 760 761 836 839 844 846
## [30745] 851 853 855 911 927 931 944 955 965 972 973 1031
## [30757] 1063 1069 1141 1211 1225 1243 1325 1331 1335 1342 1411 1412
## [30769] 1423 1431 1484 1499 1502 1637 1696 1704 1705 1737 1740 1741
## [30781] 1742 1748 1749 1781 1792 1794 1797 1800 1803 1857 1861 1867
## [30793] 1870 1878 1956 1957 1999 2002 2019 2034 2087 2098 2106 2202
## [30805] 2203 2264 2301 2322 2440 2590 2656 2763 2765 2768 2773 2840
## [30817] 2846 2856 2862 2933 2934 2939 2943 2944 2949 3039 3042 3063
## [30829] 3070 3072 3076 3266 3271 3288 3379 3390 3473 3520 3527 3533
## [30841] 3555 3575 3579 3590 3759 3801 3865 3891 3892 3904 3981 3996
## [30853] 3999 4009 4025 4076 4079 4094 4114 4117 4119 4123 4134 4142
## [30865] 4162 4187 4444 4471 4475 4480 4481 4524 4530 4535 4545 4656
## [30877] 4669 4675 4680 4683 4698 4711 4861 4865 4946 4957 5042 5143
## [30889] 5233 5479 5491 5500 5621 5623 5649 5661 5671 5675 5772 5786
## [30901] 5789 5803 5810 5818 5825 5826 5914 5933 5936 5951 5961 5968
## [30913] 5975 5996 6004 6005 6037 6039 6049 6053 6154 6166 6192 6203
## [30925] 6211 6445 6449 6477 6503 6504 6570 6574 6591 6817 6848 6872
## [30937] 6901 6906 6921 7053 7106 7109 7312 7741 7768 7770 7782 7886
## [30949] 7903 8028 8043 8143 8389 8486 8498 8529 8534 8539 8542 8647
## [30961] 8674 8687 8758 8792 8793 8955 8956 8977 9037 9047 9168 9981
## [30973] 9983 10088 10105 10298 10423 10507 10581 10788 10917 11038 11177 11294
## [30985] 11381 11499 11594 12036 12127 12136 12274 12410 12555 12683 12701 12775
## [30997] 12971 13132 13258 13433 13591 13600 13784 13959 14108 14268 2564 8020
## [31009] 8139 8255 8262 8351 8968 9042 9247 9418 9419 10273 17920 24230
## [31021] 24354 24379 25560 26256 26745 27821 28447 28599 29397 29398 29534 29796
## [31033] 30021 30025 30134 30138 30255 30256 30389 30531 30539 30660 30661 30669
## [31045] 30856 30860 30861 30863 31029 31032 31034 31035 31037 31038 31040 31041
## [31057] 31316 31319 31321 31470 31835 32007 32010 32012 32113 32115 32301 32536
## [31069] 32537 32747 32750 32752 32964 33880 33881 33882 33884 33888 33889 34117
## [31081] 34119 34120 34121 34123 34337 34340 34344 34345 34347 34348 34595 34596
## [31093] 34597 34599 34600 34602 34606 34608 34717 34718 34719 34720 34723 34724
## [31105] 34911 34913 34914 34915 30530 34115 442 1311 1998 2100 2104 2278
## [31117] 3568 4041 4059 6172 6877 7894 8231 8756 8790 9441 10023 11160
## [31129] 12237 12967 13474 14116 15095 16283 16499 16501 16718 17709 18993 19267
## [31141] 19470 19614 19686 21074 21178 21457 24254 25078 25373 26043 26098 26118
## [31153] 26133 26308 26355 26882 26941 27061 28248 28996 29533 29791 30383 30536
## [31165] 30659 30859 30862 31030 31039 31468 31585 31586 31587 31900 32539 32743
## [31177] 32748 32753 32965 32966 32968 33171 33172 33176 33699 33883 34124 34338
## [31189] 34594 34598 34607 34909 35099 35132 35337 35342 428 515 1623 2074
## [31201] 2246 2422 2447 2538 3474 3544 3545 3559 3760 3776 3789 3868
## [31213] 3873 3874 3876 3888 4066 4082 4087 4101 4104 4461 4507 4947
## [31225] 5232 6799 6808 7043 7051 7068 7249 7251 7546 7555 7579 7732
## [31237] 8045 8137 8492 8493 8531 8550 8646 8676 8771 8801 8855 8875
## [31249] 8888 8970 8975 9026 9041 9130 9173 9184 9252 9667 9669 9757
## [31261] 9775 9888 9890 9899 9910 9914 10002 10012 10263 10906 11593 11686
## [31273] 11774 12013 12125 12141 12156 12239 12259 12269 12291 12301 12393 12400
## [31285] 12402 12427 12541 12549 12553 12564 12705 12749 12759 12962 13109 13264
## [31297] 13446 13579 13584 13590 13750 13755 13921 13936 14100 14113 14114 14143
## [31309] 14260 14499 14589 14703 14711 14790 15403 15567 15788 15843 16362 16456
## [31321] 16459 16494 16661 16666 16805 16814 16825 16933 16934 16936 16949 17054
## [31333] 17057 17078 17176 17213 17362 17612 17694 17777 18380 21848 22137 22195
## [31345] 22200 22256 22267 22481 22487 23050 23088 23182 23193 23210 23315 23417
## [31357] 23747 23991 24102 24485 24612 24760 24873 25076 25144 25316 25567 25584
## [31369] 25865 25912 26037 26303 26666 26886 27056 27087 27138 27199 27362 27409
## [31381] 27488 27815 27845 27944 27981 28009 28093 28104 28136 28260 28272 28280
## [31393] 29126 29128 29265 29655 29794 30857 31325 32303 34601 2037 4053 13022
## [31405] 14921 14983 15817 16061 16188 16296 16315 17429 19928 20394 21800 22293
## [31417] 22812 24134 26679 27605 31036 32960 33885 35138 445 1479 1481 1507
## [31429] 1618 2041 2284 2291 2295 2448 2568 2664 2722 2779 2920 3040
## [31441] 3397 3517 3535 3560 3988 4108 7242 7305 7606 8878 8979 9054
## [31453] 9670 10030 11393 11731 12605 13003 13016 13743 14719 14917 15020 15109
## [31465] 15112 15131 15154 15246 15280 15296 15385 15450 15904 16176 16195 16375
## [31477] 18436 18556 19292 19463 20740 20811 20958 21023 21199 23413 24657 25034
## [31489] 25297 25582 25850 26528 35135 35525 5498 13926 14139 14291 15227 15233
## [31501] 15395 15473 15573 15595 15613 15622 15637 16281 16843 18383 18384 18389
## [31513] 18393 18496 19299 19477 19837 20478 25411 25667 30253 8032 14519 25114
## [31525] 25588 25602 25611 25915 26104 26708 26945 27067 27411 9495 12681 18049
## [31537] 20422 21983 23613 24104 26094 26122 26128 26506 27095 27646 28768 31031
## [31549] 31689 18636 20377 21420 21981 23411 29790 5643 6531 7547 9895 12537
## [31561] 14182 15803 18494 18499 20419 3190 19710 19714 35520 22285 30022 30257
## [31573] 30385 30390 30532 30663 30664 30668 30853 30855 31043 31044 31324 31326
## [31585] 34908 35136 35139 35336 35343 35345 35524 25094 27957 4831 4902 8470
## [31597] 8739 11567 13245 14551 15181 15981 15985 16120 16232 16261 16350 16490
## [31609] 16644 16753 33629 43 51 115 150 156 160 304 2237 3634
## [31621] 6674 6787 10034 10037 10069 10154 10375 10390 10459 10544 10733 10838
## [31633] 10862 10969 10995 11100 11103 11104 28062 28846 28848 29217 29219 29221
## [31645] 29351 29352 29356 29357 29473 29478 29613 29751 343 683 969 1064
## [31657] 1124 1214 1427 1796 1871 1872 1917 2249 2313 2328 2438 2540
## [31669] 2659 2760 4357 4968 5087 5099 5110 5248 5251 5331 5346 5360
## [31681] 5362 5375 5513 5540 5546 5556 5569 5586 5588 5709 5718 6069
## [31693] 6120 6127 6128 6306 6316 6354 6380 6399 6627 6679 6966 6997
## [31705] 7000 7003 7491 7512 7640 7700 7864 7878 7978 8079 8462 8625
## [31717] 8734 9016 11660 11815 18918 19115 19266 20245 20346 20429 20449 20576
## [31729] 20709 20782 20793 20852 20897 20966 20993 21036 21104 21116 21154 21413
## [31741] 21445 21496 21572 21573 21714 21724 21759 21771 21772 21773 21812 21837
## [31753] 21838 21875 21886 21897 21903 21959 21996 22127 22244 22305 22439 22467
## [31765] 22833 22887 22903 22912 22993 23035 23149 23215 23250 23343 23374 23397
## [31777] 23531 23545 23571 23654 23694 23702 23882 23886 23915 23925 23930 23935
## [31789] 24017 24037 24061 24174 24575 24587 24816 24836 24922 24945 24984 24985
## [31801] 25228 25428 25495 25783 25803 25817 26140 26307 26431 26624 26643 26802
## [31813] 26829 26970 27744 28060 28081 28212 2036 4872 11115 11246 12615 182
## [31825] 4599 1135 1236 3062 6378 8202 19108 19311 19452 20102 20188 20197
## [31837] 20268 20276 20343 20797 20917 20929 20976 20978 21565 21581 21624 21669
## [31849] 21712 21727 21761 21767 21827 22228 22237 22308 22315 22374 22386 22450
## [31861] 22475 22553 22571 22674 22714 22724 22875 22888 22906 23005 23025 23031
## [31873] 23123 23153 23228 23359 23518 23534 23586 23597 23665 23707 23884 23888
## [31885] 23893 23896 23914 23937 24024 24029 24032 24054 24069 24071 24180 24186
## [31897] 24192 24223 24224 24291 24302 24325 24326 24403 24437 24446 25425 25436
## [31909] 25503 25507 25519 25712 25732 25748 25794 25809 25836 26159 26171 26179
## [31921] 26195 26207 26211 26233 26339 26417 26457 26581 26649 26791 26989 28027
## [31933] 28028 28181 28386 28514 28517 29832 29983 29985 30097 30099 30206 30208
## [31945] 30486 30489 30787 31248 7506 7681 11896 14207 14456 14584 14672 14948
## [31957] 14952 15036 15040 15318 15500 15748 15945 15987 16096 16116 16221 16228
## [31969] 16426 19049 30094 473 500 501 568 577 611 623 682 693
## [31981] 756 859 978 1114 1854 1855 1964 2280 2287 2426 3342 3411
## [31993] 3414 3415 3420 4830 4960 4972 4979 5002 6386 7840 7871 8083
## [32005] 8557 8580 8596 9538 9555 14975 15062 15310 15320 15370 15539 15544
## [32017] 15563 16537 16597 16640 17741 17957 20451 24394 24432 24563 25752 26156
## [32029] 26637 26962 26974 27006 27135 27283 27857 28031 28084 28388 28845 28849
## [32041] 30100 32210 32673 33378 117 166 5541 6095 7437 10979 28088 28392
## [32053] 28515 28523 28714 29609 32877 386 387 400 861 1142 1233 1316
## [32065] 4829 4987 6357 6686 6696 9947 10874 11102 13052 13092 1494 2432
## [32077] 2581 2639 2754 2767 5082 5094 5212 5245 5264 5509 5520 5525
## [32089] 5530 5536 6297 6969 7021 7031 7232 7389 7478 7514 7647 7804
## [32101] 7855 8574 8586 8712 8843 8925 9234 9238 9625 9734 9742 9802
## [32113] 9856 9926 9937 10079 10380 10393 10453 10468 10967 11105 11112 11230
## [32125] 11235 11446 11466 11976 12077 12079 12190 12334 12340 12355 12470 12520
## [32137] 12529 12623 12657 12830 12899 12911 12923 12933 12952 13037 13047 13055
## [32149] 13056 13192 13648 13663 13685 13701 13711 13713 13855 13858 13862 13866
## [32161] 13887 13888 13906 14005 14006 14021 14033 14216 14220 14343 14568 15175
## [32173] 15200 15210 15216 15324 15350 15362 15495 15498 15528 15537 15735 15758
## [32185] 15759 15927 15931 15937 15957 15959 15972 15976 15979 16090 16101 16142
## [32197] 16215 16247 16271 16342 16528 16593 16596 16604 16630 16731 16751 16765
## [32209] 16791 16792 16795 16905 17005 17032 17117 17143 17165 17249 17261 17536
## [32221] 17591 17660 17681 17754 17958 17979 17984 17985 18082 18088 18107 18195
## [32233] 18243 18321 18368 18461 18467 19261 19272 19316 19396 19449 19537 19544
## [32245] 19575 19694 19754 19771 19860 20580 20639 20655 20969 21044 21093 22667
## [32257] 23015 23121 23138 23347 23602 23933 24049 24672 24863 24936 25017 25209
## [32269] 25419 25431 25445 25467 26406 27549 29083 29611 10461 3944 4303 5350
## [32281] 5352 7142 7156 8828 10220 11453 11677 11968 12089 12172 12198 12338
## [32293] 12612 12920 13043 13230 23246 26162 26180 26301 26316 26399 26573 26774
## [32305] 26781 26964 27142 27310 27421 27428 14774 14951 15051 18199 18227 18745
## [32317] 18751 18933 19289 20023 21296 23906 23919 24051 24551 24958 26998 27193
## [32329] 28713 29894 13856 14016 15738 16611 16618 16892 17007 17012 21962 3250
## [32341] 3285 15777 16535 17019 17027 9631 9653 9729 10757 11005 11141 11280
## [32353] 19899 19969 16598 16599 19260 16744 16889 16897 16998 17017 17514 17586
## [32365] 22233 25697 26169 26176 26189 26216 26222 26227 26281 26369 26390 26441
## [32377] 26493 26505 26536 26559 26605 26607 26651 26654 26656 26818 26825 26845
## [32389] 26870 27009 27021 27036 27051 27055 27184 27202 27257 27276 27281 27325
## [32401] 27337 27345 27356 27423 27451 27452 27470 27475 27563 27577 27584 27586
## [32413] 27697 27722 27740 27774 27785 27869 27924 28034 28041 28043 28046 28173
## [32425] 28186 28201 28205 28226 28237 28384 28385 28387 28389 28390 28391 28393
## [32437] 28516 28518 28519 28520 28521 28522 28711 28712 28715 28716 28717 28847
## [32449] 28850 28851 28852 28853 28960 28961 28962 29080 29081 29082 29084 29215
## [32461] 29216 29218 29220 29353 29354 29355 29474 29475 29476 29477 29479 29480
## [32473] 29608 29610 29612 29750 29752 29753 29754 29893 29981 29982 29984 29986
## [32485] 30095 30096 30098 30101 30102 30205 30207 30338 30339 30340 30487 30488
## [32497] 30490 30631 30632 30633 30634 30635 30636 30637 30783 30784 30785 30786
## [32509] 30788 30789 30790 30954 30955 30956 30957 30958 30959 30960 31147 31148
## [32521] 31149 31150 31151 31249 31250 31251 31252 31253 31254 31255 31433 31434
## [32533] 31435 31436 31437 31438 31548 31549 31550 31551 31655 31656 31657 31658
## [32545] 31742 31743 31744 31745 31814 31815 31882 31883 31884 31885 31978 31979
## [32557] 31980 31981 31982 31983 32073 32074 32075 32208 32209 32211 32212 32213
## [32569] 32214 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455
## [32581] 32456 32457 32458 32663 32664 32665 32666 32667 32668 32669 32670 32671
## [32593] 32672 32674 32675 32676 32677 32874 32875 32876 32878 32879 32880 32881
## [32605] 32882 32883 33086 33087 33088 33089 33090 33091 33092 33093 33094 33095
## [32617] 33281 33282 33283 33284 33285 33286 33287 33288 33289 33375 33376 33377
## [32629] 33379 33380 33381 33382 33474 33475 33476 33477 33478 33479 33480 33481
## [32641] 33482 33627 33628 33630 33631 33632 33633 33913 33914 33915 33916 33917
## [32653] 33918 34023 34024 34025 34026 34027 34028 34029 34030 34031 34032 34259
## [32665] 34260 34261 34262 34263 34264 34265 34266 34267 34268 34269 34500 34501
## [32677] 34502 34503 34504 34505 34506 34507 34508 34509 34691 34692 34838 34839
## [32689] 34840 34841 34842 34843 34844 34845 34846 34847 34848 34849 34850 35046
## [32701] 35047 35048 35049 35050 35051 35052 35053 35054 35055 35056 35057 35260
## [32713] 35261 35262 35263 35264 35265 35266 35267 35268 35460 35461 35462 35463
## [32725] 35464 35465 35466 35467 5995 15028 32 2207 2477 2478 3422 3581
## [32737] 3697 3730 6669 3764 5139 7898 12585 12675 13770 19325 30 110
## [32749] 201 3766 6244 22783 14802 14849 2206 2836 2855 3344 3543 27289
## [32761] 27357 31089 33562 33563 33564 3144 4400 6751 8417 12598 12852 21687
## [32773] 2016 2089 2285 2309 2747 2861 2914 3043 3554 3571 3718 3846
## [32785] 3909 4358 2327 2442 2848 5240 5565 5582 5744 6052 6502 6511
## [32797] 7398 7457 7739 8117 8348 8788 8898 9154 9328 9335 9348 10025
## [32809] 10119 10334 10422 10505 10525 10890 11056 11172 11310 11325 11331 11616
## [32821] 11685 11700 11701 12054 12265 12440 12462 12465 12540 12752 13125 13152
## [32833] 13320 13776 13811 13925 13982 14003 14004 14146 14162 14178 14299 14317
## [32845] 14340 14402 14815 14992 15272 15292 15394 15401 15406 15575 15808 15821
## [32857] 15824 15850 16028 16171 16214 16323 16360 16366 16728 16812 16855 16858
## [32869] 16870 16944 16980 17067 17090 17111 17216 17225 17307 17339 17472 17523
## [32881] 17538 17614 17635 17911 18042 18061 18128 18173 18307 18311 18395 18410
## [32893] 18498 18521 18546 18561 18720 19349 19366 19479 19635 19741 19839 19845
## [32905] 19851 19911 20069 20134 20215 20304 20387 20515 20556 20621 20668 20673
## [32917] 20745 20769 21246 21309 21553 22139 22537 22594 22603 22776 22828 22929
## [32929] 23639 23881 23999 24531 24790 24897 24904 24920 25070 25092 25112 25158
## [32941] 25343 25574 25641 26264 26487 26495 26524 26671 26732 27379 33561 35547
## [32953] 4355 4361 4406 6429 6437 6492 9171 9178 9181 10588 3765 5234
## [32965] 5236 5567 5577 5682 5688 5715 12977 13155 13170 13290 13304 13462
## [32977] 13581 13616 13759 13783 13941 13999 14133 14149 14270 14306 14319 14323
## [32989] 14335 14376 14385 25348 25414 25867 26066 26097 26357 26392 26874 27069
## [33001] 27090 27115 27160 27360 27492 27534 27634 28115 28274 28278 28308 28616
## [33013] 28770 28901 29022 29148 13826 6051 7911 9861 10609 14156 16808 28250
## [33025] 3263 3352 15256 15388 15468 15579 15583 15795 15805 15855 15893 16011
## [33037] 17191 17304 17175 17181 18962 18610 18871 33565 31088 22817 23340 25059
## [33049] 26931 26934 27538 27975 6110 6291 6311 8285 130 141 204 306
## [33061] 328 342 648 649 821 880 1020 1089 1098 1149 1178 1551
## [33073] 1586 1593 1667 2224 2225 2359 2360 2361 2494 2495 2873 2997
## [33085] 3617 3618 6871 9210 9227 9233 9735 9739 9829 9830 9835 9841
## [33097] 9850 9929 9935 9971 9973 10047 10052 21324 21411 23099 23323 23451
## [33109] 23453 23464 23485 23603 23612 23642 23734 23836 24004 24092 24635 24774
## [33121] 24892 24908 24913 25116 25121 25130 25140 25350 25355 25359 25365 25376
## [33133] 25382 25403 31613 33213 33559 34667 212 5964 21261 34403 4920 5279
## [33145] 5323 5473 5480 5600 5819 6078 6090 6133 6318 6326 6422 7808
## [33157] 7852 8303 13201 13206 13212 13428 13448 14573 14754 14944 14947 15032
## [33169] 16018 16103 16110 16285 16293 16457 19830 26145 26252 26262 26279 26669
## [33181] 26672 27102 32360 34177 34665 153 205 207 4928 6948 8159 20877
## [33193] 21083 21139 21548 23103 26149 26373 26430 26746 26885 28140 28254 28307
## [33205] 28477 28478 28635 28636 29690 29816 29817 29818 29855 29938 30054 30419
## [33217] 30891 30892 32032 32358 32359 32803 34662 34666 34750 34963 34965 34967
## [33229] 35183 36 826 1605 1607 2223 2374 2794 2887 3116 3176 9641
## [33241] 10074 11811 24504 25313 26925 26939 27847 28790 28791 30579 31499 31501
## [33253] 32801 33014 33016 33017 33214 33215 34405 34661 34752 34754 34964 35185
## [33265] 35279 35480 35484 9117 10143 10386 12219 12221 12319 12373 12375 12491
## [33277] 12508 12516 12518 12521 12530 12634 12642 12651 12659 12662 23493 30576
## [33289] 30578 33217 33560 34176 35181 35186 35482 35483 35485 35486 4158 10670
## [33301] 11359 14370 28164 28792 722 1175 1187 1662 1664 9235 10043 10563
## [33313] 10769 11257 21322 5315 5595 5646 5656 5665 5770 5782 5808 5923
## [33325] 5925 5929 6081 6299 6333 6839 6866 7387 7423 7448 7636 7671
## [33337] 7847 8089 8693 8741 8809 8813 8846 9231 9291 9307 9522 9790
## [33349] 9950 9967 10235 10555 11137 11138 11231 11237 11352 11482 11640 11667
## [33361] 12170 12178 12320 12364 12469 12860 12893 13516 13549 13651 13662 13879
## [33373] 13880 13889 14023 14051 14074 14084 14261 14266 14293 14296 14550 14566
## [33385] 14784 15034 15059 15060 15071 15082 15174 15194 15198 15205 15329 15351
## [33397] 15377 15513 15794 15807 15833 15918 16092 16094 16112 16119 16137 16282
## [33409] 16410 16590 16674 16692 16807 16820 16874 17094 17103 17232 17325 17330
## [33421] 17332 17340 17412 18019 18157 18258 18282 18309 18409 18415 18493 18519
## [33433] 18583 18586 18591 18872 18961 18971 19166 19356 19361 19465 19600 19613
## [33445] 19629 20386 20486 20493 20497 20617 20684 20744 20752 20829 21347 21746
## [33457] 21783 21860 22158 22226 22282 22424 22530 22621 23737 23870 24085 24535
## [33469] 24791 25046 25062 25392 25561 25591 25662 29023 29422 30155 30577 31612
## [33481] 34663 5779 6941 7838 6797 8585 8746 12006 12614 12741 12782 12867
## [33493] 12889 12950 13036 13247 13533 13546 13852 14012 14318 15039 15555 24086
## [33505] 24513 25384 25581 25598 25921 26152 26168 26170 26184 26209 26898 26901
## [33517] 26902 27091 27094 27117 27128 27137 27146 27244 27250 27367 27520 27533
## [33529] 27644 27817 27822 27958 28161 28281 28304 28306 28475 28637 28918 29147
## [33541] 30280 31500 11735 11765 22330 22345 23861 23876 28158 30895 32800 34664
## [33553] 23192 3586 5784 12081 12525 12768 15353 17069 17106 18732 11745 20393
## [33565] 20405 6366 6368 15502 14071 26243 26345 26677 26724 26943 28150 28476
## [33577] 28479 28480 28481 30893 30894 31498 32802 33015 33216 33218 33558 34175
## [33589] 34178 34404 34406 34407 34751 34753 34966 35182 35184 35280 35481 26424
## [33601] 26889 9398 14874 41 55 61 85 95 102 112 2366 2367
## [33613] 3637 3638 3639 3641 3642 3645 3646 5864 5879 6129 6321 6723
## [33625] 6786 9058 10980 34518 34863 6307 6675 6735 6760 8296 32225 1873
## [33637] 2018 2099 2263 2439 2772 5560 6071 6073 6313 6339 6411 6740
## [33649] 7858 8198 11475 11485 11568 12476 12517 12910 12936 12946 13051 14346
## [33661] 14362 14545 14684 14687 14748 14861 14867 14963 14964 15069 15490 15547
## [33673] 16574 17278 17397 17403 17509 18843 28056 32443 32444 32890 33108 33291
## [33685] 33371 33489 33491 34042 34519 35488 206 3643 3644 5897 6673 6293
## [33697] 24311 24392 26147 35281 2239 2240 5902 5906 6656 6678 8335 10990
## [33709] 11116 11136 11553 11569 11999 14683 16428 16444 26645 27143 29230 29626
## [33721] 35282 9115 11229 11276 11578 14668 3912 4118 4379 4531 5211 5524
## [33733] 5580 5593 5685 5713 5750 5886 5908 6091 6392 6419 7372 7384
## [33745] 7455 7691 7824 7868 8310 8581 8610 8738 8820 8849 9086 9479
## [33757] 9536 9627 9731 9744 9823 10540 10641 10774 10857 10877 11272 11351
## [33769] 11642 12110 12232 12328 12331 12361 12369 12388 12784 12803 13041 13090
## [33781] 13211 13218 13523 13653 13679 13910 14029 14040 14209 14255 14353 14355
## [33793] 14360 14552 14570 14654 14692 14780 15049 15054 15056 15184 15208 15323
## [33805] 15338 15517 15524 15543 15556 15688 15693 15711 15713 15722 15728 15942
## [33817] 15951 15954 16115 16245 16251 16608 16614 16616 16790 16882 16898 17009
## [33829] 17136 17166 17169 17282 17292 17294 17377 17394 17580 18008 18234 18238
## [33841] 18322 18359 18369 18446 18466 18483 18575 18656 18740 18824 18913 19199
## [33853] 19202 19210 19370 19398 19434 19456 19549 19554 19574 19773 19799 19862
## [33865] 19970 20108 20115 20179 20263 20329 20358 20428 20634 20967 21001 21169
## [33877] 21436 21438 21670 21677 22229 22666 23503 23541 23713 24062 24182 24684
## [33889] 24797 24840 24952 25019 25023 25168 25174 25249 25264 25493 26154 26208
## [33901] 26263 26268 26579 26856 29090 30109 30642 30643 33107 33290 33292 33490
## [33913] 34280 34281 35074 4509 5529 5550 5689 5732 5754 9488 24219 3640
## [33925] 6652 7413 11889 12225 12372 12377 12478 12501 12509 12745 12799 12959
## [33937] 13062 13097 13357 13490 13504 13525 13545 13550 13656 13892 14238 23016
## [33949] 23404 24673 24860 24950 25162 25252 25429 25744 26225 26245 26274 26292
## [33961] 26499 26582 26777 27037 27040 27046 27132 27312 27329 27761 28726 28727
## [33973] 28860 28861 28972 28973 29229 29367 29369 11833 12823 12869 12875 12956
## [33985] 14069 14251 16263 18002 20035 20461 20597 21115 21339 21574 21578 22893
## [33997] 23537 24194 24213 29767 30217 33110 4499 4543 5759 5899 6377 6398
## [34009] 6404 6407 6415 7405 7436 7711 9389 12211 12382 14034 14054 14055
## [34021] 14072 16739 17037 17041 17048 21287 21293 22045 3189 16001 33109 3277
## [34033] 3700 3717 3722 6099 14361 14864 17409 12649 17162 28728 22075 14075
## [34045] 14085 14351 18927 34517 35487 32662 35073 35489 23254 23572 23699 27898
## [34057] 24991 13451 13461 13639 13782 14404 14532 14539 14981 14999 15127 15147
## [34069] 15159 4 12 64 67 71 79 190 2194 2195 2472 3036
## [34081] 3037 3248 33566 196 193 1202 1218 5115 5213 5468 5601 5829
## [34093] 5987 6042 6186 6801 6909 6931 7758 7786 10789 10800 10835 10907
## [34105] 10926 10958 11059 11072 11203 11225 11336 11605 11719 12122 12164 12306
## [34117] 12310 12453 12592 12607 12682 12724 13307 13323 13479 13483 13566 13569
## [34129] 13583 13625 13764 13798 13919 13924 14120 14159 14274 14297 14308 14372
## [34141] 14388 14699 14791 14935 15005 15021 15135 15141 15153 15221 15225 15262
## [34153] 15274 15282 15392 15423 15436 15447 15462 15485 15582 15618 15628 15652
## [34165] 15661 15680 15702 15705 15715 15720 15725 15916 15919 15923 15933 15952
## [34177] 15968 15969 15978 16205 16217 16248 16331 16351 16605 16610 16615 16620
## [34189] 16742 16797 16989 16997 17044 17147 17167 17168 17245 17289 17295 17297
## [34201] 17819 18070 18248 18360 18379 18490 19020 19023 19026 19106 19110 19203
## [34213] 19250 19253 19373 19438 19442 19540 19585 19638 19670 19756 19825 20086
## [34225] 20251 22089 23133 25699 31090 33106 34046 35075 3038 6813 6950 19131
## [34237] 19958 20087 20174 20195 20272 20349 20798 20801 20853 20905 20921 20923
## [34249] 20986 20989 21516 21571 21616 21627 21628 21633 21662 21672 21709 21722
## [34261] 22460 22570 22733 23506 23543 23553 23556 23568 23577 23697 23910 23941
## [34273] 23943 24016 24035 24042 24060 24065 24081 24184 24188 24201 24204 24207
## [34285] 24214 24310 24439 24578 25497 26040 26089 26110 26119 26332 26402 26414
## [34297] 26448 26474 26523 26530 26598 26606 26621 26628 26629 26631 26635 26852
## [34309] 27726 27787 27800 27904 27915 28025 28057 28195 28331 28334 29488 29764
## [34321] 29765 29766 31157 31268 32226 32473 32474 32475 32476 32686 32687 32688
## [34333] 33104 33105 33308 34045 34047 34282 34284 34285 34286 34521 34522 34523
## [34345] 34525 34696 34861 34862 2196 23163 24944 24996 30356 31663 31664 31747
## [34357] 31988 33306 33307 34283 34520 2471 31748 33567 33568 33569 33570 35548
## [34369] 10427 5603 5801 5984 5993 6882 7390 7459 7722 7775 7778 7907
## [34381] 7926 7927 8150 8227 8368 8377 8665 8864 9339 9434 9587 9709
## [34393] 9924 10019 10133 10267 10439 10448 10494 10501 10511 11159 11167 11339
## [34405] 11390 11413 11495 11537 11599 11619 11698 11723 12153 12238 12262 12392
## [34417] 12401 12431 12451 12538 12609 12760 12835 12885 12989 12999 13029 13140
## [34429] 13177 13342 13580 13635 13804 13813 13942 13994 14102 14105 14111 14314
## [34441] 14381 14390 14523 14617 14627 15113 15123 15240 15253 15288 15396 15398
## [34453] 15400 15408 15455 15596 15656 15665 15673 15682 15695 15716 15932 15997
## [34465] 16157 16185 16216 16223 16229 16236 16567 16583 16594 16621 16636 16733
## [34477] 16737 16752 16773 16784 16794 16902 16919 17001 17030 17035 17119 17129
## [34489] 17139 17250 17285 17389 17391 17404 17490 17501 17581 17600 17607 17820
## [34501] 17887 17888 17889 17903 17971 17988 17995 18005 18012 18079 18095 18100
## [34513] 18102 18111 18190 18206 18233 18330 18337 18353 18358 18362 18373 18455
## [34525] 18603 18609 18638 18651 18653 18668 18670 18681 18736 18754 18763 18769
## [34537] 18829 18840 18844 18928 19118 19200 19219 19226 19235 19243 19375 19383
## [34549] 19385 19387 19389 19417 19435 19458 19556 19582 19637 19675 19772 19774
## [34561] 19795 19815 19874 19875 19889 20018 20043 20085 20112 20371 20430 20432
## [34573] 20465 20542 20591 20605 20648 20661 20693 20698 20727 20790 21000 21034
## [34585] 21109 21157 21231 21238 21289 21398 21564 21839 21876 22087 22124 22181
## [34597] 22239 22249 22364 22384 22448 22451 22549 22701 23045 23256 23366 23540
## [34609] 23587 23601 23657 23709 23725 24941 25263 25420 25432 25521 25738 25824
## [34621] 26044 26135 26826 27030 27174 27284 27314 27328 2193 5596 5763 5780
## [34633] 5792 6199 6426 8246 8393 8643 8644 8648 8781 8909 12412 13111
## [34645] 13183 13278 13311 13426 13758 13964 14168 14262 15129 23394 23564 23646
## [34657] 23649 23901 24544 24718 24869 24986 24997 25171 25749 25796 26051 26058
## [34669] 26081 26130 26299 26348 26444 26602 26837 26859 26867 26963 26967 26972
## [34681] 26976 26982 27015 27262 27273 27308 27346 27349 27419 27594 28586 28587
## [34693] 28588 28589 28590 28668 28805 29489 29898 11849 12766 12874 15588 16230
## [34705] 16242 17828 17836 18761 18929 20104 20994 21163 21330 21758 23714 26056
## [34717] 27144 27203 28333 28335 29623 29992 30218 32086 34287 5267 9248 11200
## [34729] 11222 12293 12418 12444 13442 13775 13790 15432 15475 16566 16769 16777
## [34741] 19413 19669 19891 20026 20435 20533 21434 22111 13458 13471 20183 28970
## [34753] 15946 16652 19632 32227 21209 25710 26042 26096 26356 26475 26546 26776
## [34765] 26819 28332 28336 28337 28338 28585 28667 29231 30355 32085 32477 33103
## [34777] 33305 34524 35382 26557 26787 26966 27185 27792 28806 30986
# To get the first value in our data frame:
surveys[[1, 1]]
## [1] 1
# exclude certain indices of a data frame using the “-” sign
surveys[, -1]
## # A tibble: 34,786 × 12
## month day year plot_id species_id sex hindfoot_length weight genus
## <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl> <chr>
## 1 7 16 1977 2 NL M 32 NA Neotoma
## 2 8 19 1977 2 NL M 31 NA Neotoma
## 3 9 13 1977 2 NL <NA> NA NA Neotoma
## 4 10 16 1977 2 NL <NA> NA NA Neotoma
## 5 11 12 1977 2 NL <NA> NA NA Neotoma
## 6 11 12 1977 2 NL <NA> NA NA Neotoma
## 7 12 10 1977 2 NL <NA> NA NA Neotoma
## 8 1 8 1978 2 NL <NA> NA NA Neotoma
## 9 2 18 1978 2 NL M NA 218 Neotoma
## 10 3 11 1978 2 NL <NA> NA NA Neotoma
## # ℹ 34,776 more rows
## # ℹ 3 more variables: species <chr>, taxa <chr>, plot_type <chr>
surveys[-1]
## # A tibble: 34,786 × 12
## month day year plot_id species_id sex hindfoot_length weight genus
## <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl> <chr>
## 1 7 16 1977 2 NL M 32 NA Neotoma
## 2 8 19 1977 2 NL M 31 NA Neotoma
## 3 9 13 1977 2 NL <NA> NA NA Neotoma
## 4 10 16 1977 2 NL <NA> NA NA Neotoma
## 5 11 12 1977 2 NL <NA> NA NA Neotoma
## 6 11 12 1977 2 NL <NA> NA NA Neotoma
## 7 12 10 1977 2 NL <NA> NA NA Neotoma
## 8 1 8 1978 2 NL <NA> NA NA Neotoma
## 9 2 18 1978 2 NL M NA 218 Neotoma
## 10 3 11 1978 2 NL <NA> NA NA Neotoma
## # ℹ 34,776 more rows
## # ℹ 3 more variables: species <chr>, taxa <chr>, plot_type <chr>
surveys[-(7:nrow(surveys)),] # Equivalent to head(surveys)
## # A tibble: 6 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 1 7 16 1977 2 NL M 32 NA
## 2 72 8 19 1977 2 NL M 31 NA
## 3 224 9 13 1977 2 NL <NA> NA NA
## 4 266 10 16 1977 2 NL <NA> NA NA
## 5 349 11 12 1977 2 NL <NA> NA NA
## 6 363 11 12 1977 2 NL <NA> NA NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
# As before, using single brackets returns a data frame:
surveys["species_id"]
## # A tibble: 34,786 × 1
## species_id
## <chr>
## 1 NL
## 2 NL
## 3 NL
## 4 NL
## 5 NL
## 6 NL
## 7 NL
## 8 NL
## 9 NL
## 10 NL
## # ℹ 34,776 more rows
surveys[, "species_id"]
## # A tibble: 34,786 × 1
## species_id
## <chr>
## 1 NL
## 2 NL
## 3 NL
## 4 NL
## 5 NL
## 6 NL
## 7 NL
## 8 NL
## 9 NL
## 10 NL
## # ℹ 34,776 more rows
# Double brackets returns a vector:
surveys[["species_id"]]
## [1] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [29] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [43] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [57] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [71] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [85] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [99] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [113] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [127] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [141] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [155] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [169] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [183] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [197] "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [211] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [225] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [365] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [379] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [393] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [407] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [421] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [435] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [449] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [463] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [477] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [491] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [505] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [519] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [533] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [547] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [561] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [575] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [589] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [603] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [617] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [631] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [645] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [659] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [673] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [687] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [701] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [715] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [729] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [743] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [757] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [771] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF"
## [785] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [799] "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [813] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [827] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [841] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [855] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [869] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [883] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [897] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [911] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [925] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [939] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS"
## [953] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [967] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [981] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [995] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1009] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1023] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1037] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1051] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1065] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1079] "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1093] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1107] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1121] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1135] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1149] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1163] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1177] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1191] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1205] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1219] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1233] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1247] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1261] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH"
## [1275] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT"
## [1289] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1303] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1317] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1331] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1345] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1359] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1373] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1387] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1401] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1415] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1429] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1443] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1457] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1471] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO"
## [1485] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1499] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1513] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1527] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1541] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1555] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1569] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1583] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1597] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1611] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1625] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1639] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1653] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1667] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1681] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1695] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1709] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1723] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1737] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1751] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1765] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1779] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1793] "OX" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL"
## [1807] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1821] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1835] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1849] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1863] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1877] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1891] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1905] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1919] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1933] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "PM" "PM" "PM"
## [1947] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [1961] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [1975] "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX"
## [1989] "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [2003] "AB" "AB" "CM" "CQ" "RF" "UR" "UP" "UL" "BA" "RO" "SO" "SO" "SO" "SO"
## [2017] "SO" "SO" "SO" "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2031] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2045] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2059] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2073] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2087] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2101] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2115] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2129] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2143] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2157] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2171] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2185] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2199] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2213] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2227] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2241] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2255] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2269] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2283] "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2297] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2311] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2325] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2339] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2353] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2367] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2381] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2395] "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2409] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2423] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2437] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2451] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2465] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2479] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2493] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2507] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2521] "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2535] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2549] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2563] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2577] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2591] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [2605] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2619] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2633] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2647] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2661] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2675] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2689] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2703] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2717] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2731] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2745] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2759] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2773] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2787] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2801] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2815] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2829] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2843] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2857] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2871] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2885] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2899] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2913] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2927] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2941] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2955] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2969] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH"
## [2983] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [2997] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [3011] "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3025] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3039] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3053] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3067] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3081] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3095] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3109] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3123] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3137] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3151] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3165] "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3179] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3193] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3207] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3221] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3235] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3249] "DO" "DO" "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [3263] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3277] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3291] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3305] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3319] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3333] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3347] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3361] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3375] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3389] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3403] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3417] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3431] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3445] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3459] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3473] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3487] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3501] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3515] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3529] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA"
## [3543] "SA" "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [3557] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [3571] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [3585] "PM" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB"
## [3599] "CM" "CM" "CM" "CQ" "RF" "RF" "RF" "RF" "RF" "PC" "PC" "PH" "PH" "BA"
## [3613] "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA"
## [3627] "BA" "BA" "BA" "BA" "SF" "SF" "SF" "SO" "SO" "SO" "SO" "SO" "SO" "SO"
## [3641] "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO"
## [3655] "SO" "PI" "PI" "PI" "PI" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3669] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3683] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3697] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3711] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3725] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3739] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3753] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3767] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3781] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3795] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3809] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3823] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3837] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3851] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3865] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3879] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3893] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3907] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3921] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3935] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3949] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3963] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3977] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3991] "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL" "PX" "NL" "NL" "NL" "NL" "NL"
## [4005] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [4019] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [4033] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [4047] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4061] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4075] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4089] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4103] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF"
## [4117] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4131] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4145] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4159] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4173] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4187] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4201] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4215] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4229] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4243] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4257] "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4271] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4285] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4299] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4313] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS"
## [4327] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4341] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4355] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4369] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4383] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4397] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4411] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4425] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4439] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4453] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4467] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4481] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4495] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4509] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4523] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH"
## [4537] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4551] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4565] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4579] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4593] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4607] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO"
## [4621] "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [4635] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM"
## [4649] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4663] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4677] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4691] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4705] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4719] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4733] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4747] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4761] "RM" "RM" "SA" "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4775] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4789] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4803] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4817] "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4831] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4845] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4859] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4873] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4887] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4901] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB"
## [4915] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CB" "CM" "RF" "PC"
## [4929] "PC" "PC" "PC" "PC" "CV" "SF" "SF" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4943] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4957] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4971] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4985] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4999] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [5013] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL" "PL" "US" "NL" "NL" "NL"
## [5027] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5041] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5055] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5069] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5083] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5097] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5111] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5125] "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5139] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5153] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5167] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5181] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5195] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5209] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5223] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5237] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5251] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5265] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5279] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5293] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5307] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5321] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5335] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5349] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5363] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5377] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5391] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5405] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5419] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5433] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5447] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5461] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5475] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5489] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5503] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5517] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5531] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5545] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5559] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5573] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5587] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5601] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5615] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5629] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5643] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5657] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5671] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5685] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5699] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5713] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5727] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5741] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5755] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5769] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5783] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5797] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5811] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5825] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5839] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5853] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5867] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5881] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5895] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5909] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5923] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5937] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5951] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5965] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5979] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5993] "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6007] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6021] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6035] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6049] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6063] "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [6077] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [6091] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS"
## [6105] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6119] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6133] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6147] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6161] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6175] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6189] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6203] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6217] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP"
## [6231] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6245] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6259] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6273] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6287] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6301] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6315] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6329] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [6343] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT"
## [6357] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6371] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6385] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6399] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6413] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6427] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6441] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6455] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6469] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6483] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6497] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6511] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO"
## [6525] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6539] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6553] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6567] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6581] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6595] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6609] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6623] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6637] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6651] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6665] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6679] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6693] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6707] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6721] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6735] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6749] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6763] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6777] "DO" "DO" "DO" "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [6791] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [6805] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [6819] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [6833] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM"
## [6847] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6861] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6875] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6889] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6903] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6917] "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM"
## [6931] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [6945] "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [6959] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [6973] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX"
## [6987] "DX" "DX" "AB" "AB" "AB" "CB" "UL" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7001] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7015] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7029] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7043] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7057] "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7071] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7085] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7099] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7113] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7127] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7141] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7155] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7169] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7183] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7197] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7211] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7225] "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7365] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7379] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7393] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7407] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7421] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7435] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7449] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7463] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7477] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7491] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7505] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7519] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7533] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7547] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7561] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7575] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7589] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7603] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7617] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7631] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7645] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7659] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7673] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7687] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7701] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7715] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7729] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7743] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7757] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7771] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7785] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7799] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7813] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7827] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7841] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7855] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7869] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7883] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7897] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7911] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7925] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7939] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7953] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7967] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7981] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7995] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8009] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8023] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8037] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8051] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8065] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8079] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8093] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8107] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8121] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8135] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8149] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8163] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8177] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8191] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8205] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8219] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8233] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8247] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [8261] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [8275] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [8289] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [8303] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [8317] "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8331] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8345] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8359] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8373] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8387] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8401] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8415] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8429] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP"
## [8443] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8457] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8471] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8485] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8499] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8513] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8527] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8541] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8555] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8569] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8583] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8597] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8611] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8625] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8639] "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT"
## [8653] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8667] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8681] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8695] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8709] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8723] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8737] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8751] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8765] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8779] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8793] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8807] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8821] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO"
## [8835] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8849] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8863] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8877] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8891] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8905] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8919] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8933] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8947] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8961] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8975] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8989] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9003] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9017] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9031] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9045] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9059] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9073] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9087] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9101] "DO" "DO" "DO" "DO" "DO" "OX" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [9115] "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9129] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9143] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9157] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9171] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9185] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM"
## [9199] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9213] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9227] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9241] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9255] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9269] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9283] "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM"
## [9297] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH"
## [9311] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [9325] "AH" "AH" "AH" "AH" "AH" "DX" "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB"
## [9339] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [9353] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "RF" "RF" "RF" "RF" "RF" "RF"
## [9367] "RF" "RF" "RF" "PG" "UP" "SF" "SF" "SF" "SF" "SF" "SF" "SF" "SF" "SF"
## [9381] "SF" "SF" "SF" "AS" "PI" "PI" "PI" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [9395] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [9409] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [9423] "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9437] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9451] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9465] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9479] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9493] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9507] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9521] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9535] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9549] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9563] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9577] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9591] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9605] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9619] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9647] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9661] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9675] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9689] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9703] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9717] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9731] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9745] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9759] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9773] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9787] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9801] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9815] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9829] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9843] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9857] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9871] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9885] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9899] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9913] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9927] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9941] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [9955] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [9969] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS"
## [9983] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [9997] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10011] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10025] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10039] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10053] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10067] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10081] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10095] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP"
## [10109] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10123] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10137] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10151] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10165] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10179] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10193] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10207] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH"
## [10221] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10235] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10249] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10263] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10277] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10291] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO"
## [10305] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [10319] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [10333] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS"
## [10347] "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [10361] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [10375] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [10389] "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10403] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10417] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10431] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10445] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10459] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10473] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10487] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10501] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM" "PM"
## [10515] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10529] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10543] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10557] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10571] "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [10585] "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CM"
## [10599] "RF" "RF" "PG" "PH" "UR" "ZL" "BA" "BA" "SF" "SF" "SF" "SO" "PB" "PB"
## [10613] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10627] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10641] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10655] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10669] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10683] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10697] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10711] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10725] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10739] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10753] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10767] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10781] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10795] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10809] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10823] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10837] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10851] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL"
## [10865] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [10879] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [10893] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM"
## [10907] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10921] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10935] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10949] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10963] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10977] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10991] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11005] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11019] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11033] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11047] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11061] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11075] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11089] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11103] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11117] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11131] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11145] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11159] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11173] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11187] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11201] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11215] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11229] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11243] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11257] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11271] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11285] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11299] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11313] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11327] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11341] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11355] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11369] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11383] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11397] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11411] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11425] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11439] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11453] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11467] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11481] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11495] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11509] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11523] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11537] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11551] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11565] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11579] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11593] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11607] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11621] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11635] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11649] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11663] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11677] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11691] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11705] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11719] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11733] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11747] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11761] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11775] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11789] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11803] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11817] "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [11831] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [11845] "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11859] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11873] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11887] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11901] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11915] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11929] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11943] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11957] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11971] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11985] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11999] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [12013] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [12027] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12041] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12055] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12069] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12083] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12097] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12111] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12125] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12139] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12153] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12167] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12181] "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [12195] "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12209] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12223] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12237] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12251] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12265] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12279] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12293] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12307] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO"
## [12321] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12335] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12349] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12363] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12377] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12391] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12405] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12419] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12433] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12447] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12461] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12475] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12489] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12503] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12517] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS"
## [12531] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL"
## [12545] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [12559] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [12573] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [12587] "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12601] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12615] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12629] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12643] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12657] "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "PM" "PM" "PM"
## [12671] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [12685] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX" "DX" "DX" "DX" "AB" "AB"
## [12699] "CB" "RF" "PC" "PC" "PC" "PC" "PG" "PH" "UR" "UR" "UR" "CS" "SF" "SF"
## [12713] "SF" "SF" "SF" "SF" "SO" "SU" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12727] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12741] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12755] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12769] "PB" "PB" "PB" "PB" "US" "US" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12783] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12797] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12811] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12825] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12839] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12853] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12867] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12881] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12895] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12909] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12923] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12937] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12951] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12965] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12979] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12993] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13007] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13021] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13035] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13049] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13063] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13077] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13091] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13105] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13119] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13133] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13147] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13161] "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13175] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13189] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13203] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13217] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13231] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13245] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13259] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13273] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE"
## [13287] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13301] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13315] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13329] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13343] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS"
## [13357] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13371] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13385] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13399] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13413] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13427] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13441] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13455] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13469] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13483] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13497] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13511] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13525] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13539] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13553] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13567] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13581] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13595] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13609] "PP" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13623] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13637] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13651] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13665] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13679] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO"
## [13693] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [13707] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [13721] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [13735] "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL"
## [13749] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [13763] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13777] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13791] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13805] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13819] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13833] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13847] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13861] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13875] "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [13889] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [13903] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH"
## [13917] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [13931] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [13945] "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [13959] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [13973] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CQ"
## [13987] "CQ" "CQ" "CQ" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "PC"
## [14001] "PC" "PC" "PC" "PU" "PU" "PU" "BA" "SO" "SO" "SO" "SO" "SO" "SO" "ST"
## [14015] "SU" "SU" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14029] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14043] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14057] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14071] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14085] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14099] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14113] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14127] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14141] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL"
## [14155] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM"
## [14169] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14183] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14197] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14211] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14225] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14365] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14379] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14393] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14407] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14421] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14435] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14449] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14463] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14477] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14491] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14505] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14519] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14533] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14547] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14561] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14575] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14589] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14603] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14617] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14631] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14645] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14659] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14673] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14687] "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14701] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14715] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14729] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14743] "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [14757] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [14771] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14785] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14799] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14813] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14827] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14841] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14855] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14869] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14883] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14897] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14911] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14925] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14939] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14953] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14967] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14981] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14995] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15009] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15023] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15037] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15051] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15065] "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [15079] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [15093] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [15107] "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15121] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15135] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15149] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15163] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15177] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15191] "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "OL"
## [15205] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [15219] "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [15233] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "PM" "PM" "PM"
## [15247] "PM" "AH" "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [15261] "AB" "AB" "AB" "AB" "CB" "CB" "CQ" "PH" "PH" "PH" "PH" "PH" "PH" "PH"
## [15275] "PH" "PH" "UP" "SF" "SU" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15289] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15303] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15317] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15331] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15345] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15359] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15373] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15387] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15401] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15415] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15429] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15443] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15457] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15471] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15485] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15499] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15513] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15527] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL"
## [15541] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15555] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15569] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15583] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15597] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15611] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15625] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15639] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15653] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15667] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15681] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15695] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15709] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15723] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15737] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15751] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15765] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15779] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15793] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15807] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15821] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15835] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15849] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15863] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15877] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15891] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15905] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15919] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15933] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15947] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15961] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15975] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15989] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16003] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16017] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16031] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16045] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16059] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16073] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16087] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16101] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16115] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16129] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16143] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16157] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16171] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16185] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16199] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16213] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16227] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16241] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16255] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16269] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16283] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16297] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16311] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16325] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16339] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16353] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16367] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16381] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16395] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16409] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16423] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16437] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16451] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16465] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16479] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16493] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16507] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16521] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16535] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16549] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16563] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16577] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16591] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16605] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16619] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16647] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16661] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16675] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16689] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16703] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16717] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16731] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16745] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16759] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16773] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16787] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16801] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF"
## [16815] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [16829] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [16843] "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [16857] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [16871] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16885] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16899] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16913] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16927] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16941] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16955] "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [16969] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [16983] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [16997] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [17011] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [17025] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT"
## [17039] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17053] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17067] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17081] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17095] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17109] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO"
## [17123] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17137] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17151] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17165] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17179] "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [17193] "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17207] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17221] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17235] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17249] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17263] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17277] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17291] "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [17305] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [17319] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA"
## [17333] "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [17347] "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [17361] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [17375] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [17389] "DX" "DX" "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB"
## [17403] "CB" "CB" "CB" "CB" "PC" "PC" "PG" "PH" "PB" "PB" "PB" "PB" "PL" "NL"
## [17417] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [17431] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM"
## [17445] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17459] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17473] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17487] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17501] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17515] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17529] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17543] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17557] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17571] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17585] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17599] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17613] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17627] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17641] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17655] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17669] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17683] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17697] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17711] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17725] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17739] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17753] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17767] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17781] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17795] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17809] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17823] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17837] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17851] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17865] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17879] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF"
## [17893] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [17907] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [17921] "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [17935] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [17949] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS"
## [17963] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [17977] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [17991] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [18005] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [18019] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP"
## [18033] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18047] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18061] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18075] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18089] "PP" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18103] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18117] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18131] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18145] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18159] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18173] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18187] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18201] "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18215] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18229] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18243] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18257] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18271] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18285] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18299] "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [18313] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18327] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18341] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18355] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18369] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18383] "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18397] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18411] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18425] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18439] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18453] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18467] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18481] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM"
## [18495] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [18509] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [18523] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [18537] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "DX" "AB" "AB" "CB"
## [18551] "CQ" "CQ" "RF" "RF" "RF" "RF" "RF" "PH" "BA" "BA" "BA" "BA" "RO" "RX"
## [18565] "PL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [18579] "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18593] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18607] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18621] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18635] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18649] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18663] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18677] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18691] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18705] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18719] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18733] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18747] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18761] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18775] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18789] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18803] "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18817] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18831] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18845] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18859] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18873] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18887] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18901] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18915] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18929] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18943] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18957] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18971] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS"
## [18985] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [18999] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19013] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19027] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19041] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19055] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19069] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19083] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP"
## [19097] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19111] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19125] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19139] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19153] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19167] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19181] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19195] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19209] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19223] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19237] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19251] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19265] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19279] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19293] "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT"
## [19307] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19321] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19335] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19349] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19363] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19377] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19391] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19405] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19419] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19433] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19447] "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19461] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19475] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19489] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19503] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19517] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19531] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19545] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19559] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19573] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19587] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19601] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19615] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19629] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19643] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19657] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19671] "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [19685] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [19699] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [19713] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [19727] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM"
## [19741] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19755] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19769] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19783] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19797] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19811] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "PM" "PM"
## [19825] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [19839] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AB"
## [19853] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [19867] "AB" "AB" "CB" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "PC" "PG" "UR"
## [19881] "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19895] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19909] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19923] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19937] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19951] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19965] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19979] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19993] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20007] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20021] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20035] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20049] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20063] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20077] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20091] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20105] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20119] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "CT" "NL" "NL" "NL" "NL" "NL"
## [20133] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20147] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20161] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20175] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20189] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20203] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20217] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20231] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20245] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20259] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20273] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20287] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20301] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20315] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20329] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20343] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20357] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20371] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20385] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20399] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20413] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20427] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20441] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20455] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20469] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20483] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20497] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20511] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20525] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20539] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20553] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20567] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20581] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20595] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20609] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20623] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20637] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20651] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20665] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20679] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20693] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20707] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20721] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20735] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20749] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20763] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20777] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20791] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20805] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20819] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20833] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20847] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20861] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20875] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20889] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20903] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20917] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20931] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20945] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20959] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20973] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20987] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21001] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21015] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21029] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21043] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21057] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21071] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21085] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21099] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21113] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21127] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21141] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21155] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21169] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21183] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21197] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF"
## [21211] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21225] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21239] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21253] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21267] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21281] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21295] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21309] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21323] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21337] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "DS" "DS" "DS" "DS" "DS"
## [21351] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21365] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21379] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21393] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21407] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21421] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21435] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21449] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21463] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21477] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21491] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21505] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21519] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21533] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21547] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21561] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21575] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21589] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21603] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21617] "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21631] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21645] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21659] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21673] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21687] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21701] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21715] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21729] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "OT" "OT" "OT"
## [21743] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21757] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21771] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21785] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21799] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21813] "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21827] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21841] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21855] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21869] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS"
## [21883] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [21897] "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21911] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21925] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21939] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21953] "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [21967] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "AH"
## [21981] "AH" "DX" "DX" "DX" "AB" "AB" "AB" "CB" "PC" "PI" "PB" "PB" "PB" "PB"
## [21995] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22009] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22023] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22037] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22051] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22065] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22079] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL"
## [22093] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [22107] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [22121] "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22135] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22149] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22163] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22177] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22191] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22205] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22219] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22233] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22247] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22261] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22275] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22289] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22303] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22317] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22331] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22345] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22359] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22373] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22387] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22401] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22415] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22429] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22443] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22457] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22471] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22485] "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22499] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22513] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22527] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22541] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22555] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22569] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22583] "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22597] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22611] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22625] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22639] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS"
## [22653] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22667] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22681] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22695] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22709] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22723] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22737] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22751] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP"
## [22765] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22779] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22793] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22807] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22821] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22835] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22849] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22863] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22877] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "OT" "OT" "OT"
## [22891] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22905] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22919] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22933] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22947] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22961] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22975] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22989] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [23003] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [23017] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [23031] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [23045] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [23059] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [23073] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS"
## [23087] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL"
## [23101] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23115] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23129] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23143] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23157] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23171] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23185] "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23199] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23213] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23227] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23241] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23255] "RM" "RM" "RM" "RM" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [23269] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [23283] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH"
## [23297] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [23311] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [23325] "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [23339] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB"
## [23353] "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "RF"
## [23367] "RF" "RF" "RF" "RF" "RF" "PC" "PC" "PC" "PC" "PC" "PC" "PC" "PC" "PH"
## [23381] "PH" "PH" "PH" "PH" "UL" "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23395] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23409] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23423] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23437] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23451] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23465] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23479] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23493] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23507] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23521] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23535] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23549] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23563] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23577] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23591] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23605] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PX" "PX" "US"
## [23619] "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [23633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [23647] "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23661] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23675] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23689] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23703] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23717] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23731] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23745] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23759] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23773] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23787] "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23801] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23815] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23829] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23843] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23857] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "PP" "PP" "PP"
## [23871] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23885] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23899] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23913] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23927] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23941] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23955] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23969] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23983] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23997] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [24011] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [24025] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [24039] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH"
## [24053] "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24067] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24081] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24095] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24109] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24123] "OT" "OT" "DO" "OX" "OX" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [24137] "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24151] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24165] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24179] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24193] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24207] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24221] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24235] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24249] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24263] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24277] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24291] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24305] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24319] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24333] "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM" "PM"
## [24347] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24361] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24375] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24389] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24403] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24417] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24431] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24445] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH"
## [24459] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [24473] "AB" "AB" "AB" "AB" "CQ" "RF" "RF" "PC" "SC" "BA" "BA" "BA" "BA" "BA"
## [24487] "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "SF" "SF" "SF" "SF"
## [24501] "SF" "SF" "SF" "RO" "AS" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24515] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24529] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24543] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24557] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24571] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24585] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24599] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24613] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24627] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24641] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24655] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24669] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24683] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24697] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24711] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24725] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24739] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24753] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24767] "PB" "PB" "PL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24781] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24795] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24809] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24823] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24837] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24851] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24865] "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24879] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24893] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24907] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24921] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24935] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24949] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24963] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24977] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24991] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25005] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25019] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25033] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25047] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25061] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25075] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25089] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25103] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25117] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25131] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25145] "DM" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25159] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25173] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25187] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25201] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25215] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25229] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25243] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25257] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25271] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25285] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25299] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25313] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25327] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [25341] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [25355] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [25369] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "OT"
## [25383] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [25397] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [25411] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO"
## [25425] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25439] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25453] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25467] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25481] "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL"
## [25495] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25509] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25523] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25537] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25551] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25565] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25579] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25593] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25607] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25621] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25635] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25649] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA"
## [25663] "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25677] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25691] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25705] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25719] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25733] "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [25747] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [25761] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "RF" "RF" "RF" "RF" "RF"
## [25775] "PU" "SO" "SO" "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL"
## [25789] "PL" "PL" "PL" "PL" "PL" "PL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25803] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25817] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25831] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25845] "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25859] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25873] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25887] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25901] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25915] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25929] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25943] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25957] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25971] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25985] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25999] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26013] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26027] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26041] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26055] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26069] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26083] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26097] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26111] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26125] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26139] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26153] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26167] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26181] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26195] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26209] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26223] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26237] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26251] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26265] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26279] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26293] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26307] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26321] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26335] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26349] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26363] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26377] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26391] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26405] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26419] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26433] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26447] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF"
## [26461] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [26475] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE"
## [26489] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [26503] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26517] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26531] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26545] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26559] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26573] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26587] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26601] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26615] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26629] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26643] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26657] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26671] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26685] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26699] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26713] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26727] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26741] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26755] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26769] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26783] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26797] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26811] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26825] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26839] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26853] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26867] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26881] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26895] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26909] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26923] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26937] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26951] "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [26965] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [26979] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [26993] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27007] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27021] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27035] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27049] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27063] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27077] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27091] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27105] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27119] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27133] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27147] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27161] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27175] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27189] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27203] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27217] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27231] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27245] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27259] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27273] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27287] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27301] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27315] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27329] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27343] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27357] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27371] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27385] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27399] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27413] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27427] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27441] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27455] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27469] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27483] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27497] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27511] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27525] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27539] "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [27553] "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [27567] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [27581] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [27595] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM"
## [27609] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [27623] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "PM" "PM" "PM" "PM" "PM"
## [27637] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH"
## [27651] "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "PC" "PH" "PH"
## [27665] "PH" "UR" "UP" "UP" "UP" "BA" "RO" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27679] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27693] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27707] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27721] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27735] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27749] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27763] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27777] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [27791] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27805] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27819] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27833] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27847] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27861] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27875] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27889] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27903] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27917] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27931] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27945] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27959] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27973] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27987] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28001] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28015] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28029] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28043] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28057] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28071] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28085] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28099] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28113] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28127] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28141] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28155] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28169] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28183] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28197] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28211] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28225] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF"
## [28365] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [28379] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [28393] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [28407] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [28421] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28435] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28449] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28463] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28477] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28491] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28505] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28519] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28533] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28547] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28561] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28575] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28589] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28603] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28617] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28631] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP"
## [28645] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28659] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28673] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28687] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28701] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28715] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28729] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28743] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28757] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28771] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28785] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28799] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28813] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28827] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28841] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28855] "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28869] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28883] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28897] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28911] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28925] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28939] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28953] "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [28967] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [28981] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [28995] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29009] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29023] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29037] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29051] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29065] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29079] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29093] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29107] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29121] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29135] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29149] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29163] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29177] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29191] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29205] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29219] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29233] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29247] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29261] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29275] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29289] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29303] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29317] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29331] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29345] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29359] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29373] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29387] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29401] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29415] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29429] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS"
## [29443] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [29457] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [29471] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [29485] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [29499] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM"
## [29513] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM"
## [29527] "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [29541] "AH" "AH" "AH" "AH" "DX" "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "CB"
## [29555] "CB" "CM" "PC" "UR" "UL" "PI" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29569] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29583] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29597] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29611] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29625] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29639] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29653] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL"
## [29667] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [29681] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29695] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29709] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29723] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29737] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29751] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29765] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29779] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29793] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29807] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29821] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29835] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29849] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29863] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29877] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29891] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29905] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29919] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29933] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29947] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29961] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29975] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29989] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30003] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30017] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30031] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30045] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30059] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30073] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30087] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30101] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30115] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30129] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30143] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30157] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30171] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30185] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30199] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30213] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30227] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30241] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30255] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30269] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30283] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30297] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30311] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30325] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30339] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30353] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30367] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30381] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30395] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30409] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30423] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30437] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30451] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30465] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30479] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30493] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30507] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30521] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30535] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30549] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30563] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30577] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30591] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30605] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30619] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30647] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30661] "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [30675] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [30689] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE"
## [30703] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [30717] "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30731] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30745] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30759] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30773] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30787] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30801] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30815] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30829] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30843] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30857] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30871] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30885] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30899] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30913] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30927] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30941] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30955] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30969] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30983] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30997] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP"
## [31011] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31025] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31039] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31053] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31067] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31081] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31095] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31109] "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31123] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31137] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31151] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31165] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31179] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31193] "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31207] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31221] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31235] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31249] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31263] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31277] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31291] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31305] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31319] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31333] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31347] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31361] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31375] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31389] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS"
## [31403] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [31417] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL"
## [31431] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31445] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31459] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31473] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31487] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM"
## [31501] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [31515] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM" "PM" "PM" "PM" "PM" "PM"
## [31529] "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [31543] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX" "DX" "DX" "DX" "DX" "AB"
## [31557] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CM" "PC" "PC" "SF" "RX"
## [31571] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [31585] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL" "NL" "NL" "NL" "NL" "NL"
## [31599] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM"
## [31613] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [31627] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [31641] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF"
## [31655] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31669] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31683] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31697] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31711] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31725] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31739] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31753] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31767] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31781] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31795] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31809] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [31823] "PE" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31837] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31851] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31865] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31879] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31893] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31907] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31921] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31935] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31949] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [31963] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT"
## [31977] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31991] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [32005] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [32019] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [32033] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OX" "OX"
## [32047] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL"
## [32061] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [32075] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32089] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32103] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32117] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32131] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32145] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32159] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32173] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32187] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32201] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32215] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32229] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32243] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32257] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32271] "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32285] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32299] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH"
## [32313] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [32327] "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CM"
## [32341] "CM" "RF" "RF" "PG" "PG" "PH" "PH" "PH" "PH" "PH" "PH" "PH" "PH" "PH"
## [32355] "BA" "BA" "BA" "SF" "SF" "SF" "SF" "SF" "SF" "SF" "SU" "PB" "PB" "PB"
## [32369] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32383] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32397] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32411] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32425] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32439] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32453] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32467] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32481] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32495] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32509] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32523] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32537] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32551] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32565] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32579] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32593] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32607] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32621] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32635] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32649] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32663] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32677] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32691] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32705] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32719] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "DM" "DM"
## [32733] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [32747] "DS" "DS" "DS" "DS" "PP" "PP" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT"
## [32761] "OT" "OT" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL"
## [32775] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM"
## [32789] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32803] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32817] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32831] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32845] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32859] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32873] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32887] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32901] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32915] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32929] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32943] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA"
## [32957] "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32971] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32985] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32999] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33013] "PM" "PM" "PM" "PM" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CM" "CM"
## [33027] "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "PC" "PC"
## [33041] "PC" "UR" "RO" "RO" "PB" "PL" "PL" "PL" "PL" "PL" "PL" "PL" "NL" "NL"
## [33055] "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33069] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33083] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33097] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33111] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33125] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33139] "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33153] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33167] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33181] "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP"
## [33195] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [33209] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [33223] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33237] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33251] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33265] "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [33279] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [33293] "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL"
## [33307] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM"
## [33321] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33335] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33349] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33363] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33377] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33391] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33405] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33419] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33433] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33447] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33461] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33475] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "PM" "PM" "PM" "PM"
## [33489] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33503] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33517] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33531] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH"
## [33545] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB"
## [33559] "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CQ" "CQ" "RF" "PG" "PB" "PB" "PB"
## [33573] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [33587] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL"
## [33601] "PL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33615] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33629] "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33643] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33657] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33671] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33685] "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP"
## [33699] "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33713] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "OL"
## [33727] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33741] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33755] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33769] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33783] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33797] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33811] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33825] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33839] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33853] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33867] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33881] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33895] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33909] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "SA"
## [33923] "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33937] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33951] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33965] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33979] "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [33993] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB"
## [34007] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [34021] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CM" "CQ" "CQ"
## [34035] "CQ" "CQ" "RF" "RF" "RF" "PC" "PC" "PC" "PU" "UP" "UP" "ZL" "SF" "RO"
## [34049] "RO" "PB" "PB" "PB" "PL" "PL" "PL" "PL" "PX" "NL" "NL" "NL" "NL" "NL"
## [34063] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [34077] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PE" "PE" "PE" "PE" "PE" "PE"
## [34091] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34105] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34119] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34133] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34147] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34161] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34175] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34189] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34203] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34217] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34231] "PE" "PE" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34245] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34259] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34273] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34287] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34301] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34315] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34329] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34343] "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [34357] "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "RM"
## [34371] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34385] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34399] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34413] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34427] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34441] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34455] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34469] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34483] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34497] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34511] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34525] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34539] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34553] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34567] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34581] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34595] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34609] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34623] "RM" "RM" "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34637] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34651] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34665] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34679] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34693] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [34707] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [34721] "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [34735] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [34749] "CB" "CB" "CB" "CB" "RF" "RF" "PC" "UR" "CU" "PB" "PB" "PB" "PB" "PB"
## [34763] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [34777] "PB" "PB" "PB" "PL" "PL" "PL" "PL" "PL" "PX" "PX"
# We can also use the $ operator with column names instead of double brackets
# This returns a vector:
surveys$species_id
## [1] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [29] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [43] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [57] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [71] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [85] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [99] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [113] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [127] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [141] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [155] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [169] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [183] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [197] "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [211] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [225] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [365] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [379] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [393] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [407] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [421] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [435] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [449] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [463] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [477] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [491] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [505] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [519] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [533] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [547] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [561] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [575] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [589] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [603] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [617] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [631] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [645] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [659] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [673] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [687] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [701] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [715] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [729] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [743] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [757] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [771] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF"
## [785] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [799] "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [813] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [827] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [841] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [855] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [869] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [883] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [897] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [911] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [925] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [939] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS"
## [953] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [967] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [981] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [995] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1009] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1023] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1037] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1051] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1065] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [1079] "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1093] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1107] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1121] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1135] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1149] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1163] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1177] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1191] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1205] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1219] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1233] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1247] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [1261] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH"
## [1275] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT"
## [1289] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1303] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1317] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1331] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1345] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1359] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1373] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1387] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1401] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1415] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1429] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1443] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1457] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [1471] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO"
## [1485] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1499] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1513] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1527] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1541] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1555] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1569] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1583] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1597] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1611] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1625] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1639] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1653] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1667] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1681] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1695] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1709] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1723] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1737] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1751] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1765] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1779] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [1793] "OX" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL"
## [1807] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1821] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1835] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1849] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [1863] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1877] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1891] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1905] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1919] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [1933] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "PM" "PM" "PM"
## [1947] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [1961] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [1975] "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX"
## [1989] "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [2003] "AB" "AB" "CM" "CQ" "RF" "UR" "UP" "UL" "BA" "RO" "SO" "SO" "SO" "SO"
## [2017] "SO" "SO" "SO" "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2031] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2045] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2059] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2073] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2087] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2101] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2115] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2129] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2143] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2157] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2171] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [2185] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2199] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2213] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2227] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2241] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2255] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2269] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [2283] "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2297] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2311] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2325] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2339] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2353] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2367] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2381] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [2395] "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2409] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2423] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2437] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2451] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2465] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2479] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2493] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2507] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [2521] "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2535] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2549] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2563] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2577] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [2591] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [2605] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2619] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2633] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2647] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2661] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2675] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2689] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2703] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2717] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2731] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2745] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2759] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2773] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2787] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2801] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2815] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2829] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2843] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2857] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2871] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2885] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2899] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2913] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2927] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2941] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2955] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [2969] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH"
## [2983] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [2997] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [3011] "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3025] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3039] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3053] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3067] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3081] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3095] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3109] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3123] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3137] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3151] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [3165] "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3179] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3193] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3207] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3221] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3235] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [3249] "DO" "DO" "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [3263] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3277] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3291] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3305] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3319] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [3333] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3347] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3361] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3375] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3389] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3403] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3417] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3431] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3445] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3459] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3473] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3487] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3501] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3515] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [3529] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA"
## [3543] "SA" "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [3557] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [3571] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [3585] "PM" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB"
## [3599] "CM" "CM" "CM" "CQ" "RF" "RF" "RF" "RF" "RF" "PC" "PC" "PH" "PH" "BA"
## [3613] "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA"
## [3627] "BA" "BA" "BA" "BA" "SF" "SF" "SF" "SO" "SO" "SO" "SO" "SO" "SO" "SO"
## [3641] "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO" "SO"
## [3655] "SO" "PI" "PI" "PI" "PI" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3669] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3683] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3697] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3711] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3725] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3739] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3753] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3767] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3781] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3795] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3809] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3823] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3837] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3851] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3865] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3879] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3893] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3907] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3921] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3935] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3949] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3963] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3977] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [3991] "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL" "PX" "NL" "NL" "NL" "NL" "NL"
## [4005] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [4019] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [4033] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [4047] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4061] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4075] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4089] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [4103] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF"
## [4117] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4131] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4145] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4159] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4173] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4187] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4201] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4215] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4229] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4243] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [4257] "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4271] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4285] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4299] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [4313] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS"
## [4327] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4341] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4355] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4369] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4383] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4397] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4411] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4425] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4439] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4453] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4467] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4481] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4495] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4509] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [4523] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH"
## [4537] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4551] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4565] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4579] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4593] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [4607] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO"
## [4621] "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [4635] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM"
## [4649] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4663] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4677] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4691] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4705] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4719] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4733] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4747] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [4761] "RM" "RM" "SA" "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4775] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4789] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4803] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [4817] "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4831] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4845] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4859] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4873] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4887] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [4901] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB"
## [4915] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CB" "CM" "RF" "PC"
## [4929] "PC" "PC" "PC" "PC" "CV" "SF" "SF" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4943] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4957] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4971] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4985] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [4999] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [5013] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL" "PL" "US" "NL" "NL" "NL"
## [5027] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5041] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5055] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5069] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5083] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5097] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5111] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [5125] "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5139] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5153] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5167] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5181] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5195] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5209] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5223] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5237] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5251] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5265] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5279] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5293] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5307] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5321] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5335] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5349] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5363] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5377] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5391] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5405] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5419] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5433] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5447] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5461] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5475] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5489] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5503] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5517] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5531] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5545] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5559] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5573] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5587] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5601] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5615] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5629] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5643] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5657] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5671] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5685] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5699] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5713] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5727] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5741] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5755] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5769] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5783] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5797] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5811] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5825] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5839] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5853] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5867] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5881] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5895] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5909] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5923] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5937] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5951] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5965] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5979] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [5993] "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6007] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6021] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6035] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6049] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [6063] "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [6077] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [6091] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS"
## [6105] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6119] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6133] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6147] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6161] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6175] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6189] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6203] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [6217] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP"
## [6231] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6245] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6259] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6273] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6287] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6301] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6315] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [6329] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [6343] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT"
## [6357] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6371] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6385] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6399] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6413] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6427] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6441] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6455] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6469] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6483] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6497] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [6511] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO"
## [6525] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6539] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6553] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6567] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6581] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6595] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6609] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6623] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6637] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6651] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6665] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6679] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6693] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6707] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6721] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6735] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6749] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6763] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [6777] "DO" "DO" "DO" "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [6791] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [6805] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [6819] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [6833] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM"
## [6847] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6861] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6875] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6889] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6903] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [6917] "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM"
## [6931] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [6945] "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [6959] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [6973] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX"
## [6987] "DX" "DX" "AB" "AB" "AB" "CB" "UL" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7001] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7015] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7029] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7043] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [7057] "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7071] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7085] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7099] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7113] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7127] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7141] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7155] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7169] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7183] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7197] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7211] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [7225] "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7365] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7379] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7393] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7407] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7421] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7435] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7449] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7463] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7477] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7491] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7505] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7519] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7533] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7547] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7561] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7575] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7589] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7603] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7617] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7631] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7645] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7659] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7673] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7687] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7701] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7715] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7729] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7743] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7757] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7771] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7785] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7799] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7813] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7827] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7841] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7855] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7869] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7883] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7897] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7911] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7925] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7939] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7953] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7967] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7981] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [7995] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8009] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8023] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8037] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8051] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8065] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8079] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8093] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8107] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8121] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8135] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8149] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8163] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8177] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8191] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8205] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8219] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8233] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [8247] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [8261] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [8275] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [8289] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [8303] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [8317] "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8331] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8345] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8359] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8373] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8387] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8401] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8415] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [8429] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP"
## [8443] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8457] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8471] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8485] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8499] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8513] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8527] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8541] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8555] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8569] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8583] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8597] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8611] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8625] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [8639] "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT"
## [8653] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8667] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8681] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8695] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8709] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8723] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8737] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8751] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8765] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8779] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8793] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8807] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [8821] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO"
## [8835] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8849] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8863] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8877] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8891] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8905] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8919] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8933] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8947] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8961] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8975] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [8989] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9003] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9017] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9031] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9045] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9059] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9073] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9087] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [9101] "DO" "DO" "DO" "DO" "DO" "OX" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [9115] "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9129] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9143] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9157] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9171] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [9185] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM"
## [9199] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9213] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9227] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9241] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9255] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9269] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [9283] "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM"
## [9297] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH"
## [9311] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [9325] "AH" "AH" "AH" "AH" "AH" "DX" "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB"
## [9339] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [9353] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "RF" "RF" "RF" "RF" "RF" "RF"
## [9367] "RF" "RF" "RF" "PG" "UP" "SF" "SF" "SF" "SF" "SF" "SF" "SF" "SF" "SF"
## [9381] "SF" "SF" "SF" "AS" "PI" "PI" "PI" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [9395] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [9409] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [9423] "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9437] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9451] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9465] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [9479] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9493] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9507] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9521] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9535] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9549] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9563] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9577] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9591] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9605] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9619] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9647] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9661] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9675] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9689] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9703] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9717] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9731] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9745] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9759] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9773] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9787] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [9801] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9815] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9829] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9843] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9857] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9871] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9885] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9899] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9913] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9927] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [9941] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [9955] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [9969] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS"
## [9983] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [9997] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10011] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10025] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10039] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10053] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10067] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10081] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [10095] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP"
## [10109] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10123] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10137] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10151] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10165] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10179] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10193] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [10207] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH"
## [10221] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10235] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10249] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10263] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10277] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [10291] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO"
## [10305] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [10319] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [10333] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS"
## [10347] "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [10361] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [10375] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [10389] "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10403] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10417] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10431] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10445] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10459] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10473] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10487] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [10501] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM" "PM"
## [10515] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10529] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10543] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10557] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [10571] "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [10585] "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CM"
## [10599] "RF" "RF" "PG" "PH" "UR" "ZL" "BA" "BA" "SF" "SF" "SF" "SO" "PB" "PB"
## [10613] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10627] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10641] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10655] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10669] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10683] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10697] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10711] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10725] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10739] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10753] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10767] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10781] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10795] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10809] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10823] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10837] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [10851] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL"
## [10865] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [10879] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [10893] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM"
## [10907] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10921] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10935] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10949] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10963] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10977] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [10991] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11005] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11019] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11033] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11047] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11061] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11075] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11089] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11103] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11117] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11131] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11145] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11159] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11173] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11187] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11201] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11215] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11229] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11243] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11257] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11271] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11285] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11299] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11313] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11327] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11341] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11355] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11369] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11383] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11397] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11411] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11425] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11439] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11453] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11467] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11481] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11495] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11509] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11523] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11537] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11551] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11565] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11579] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11593] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11607] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11621] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11635] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11649] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11663] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11677] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11691] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11705] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11719] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11733] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11747] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11761] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11775] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11789] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11803] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [11817] "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [11831] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [11845] "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11859] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11873] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11887] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [11901] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11915] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11929] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11943] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11957] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11971] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11985] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [11999] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [12013] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [12027] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12041] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12055] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12069] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12083] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12097] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12111] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12125] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12139] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12153] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12167] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [12181] "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [12195] "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12209] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12223] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12237] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12251] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12265] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12279] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12293] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [12307] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO"
## [12321] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12335] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12349] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12363] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12377] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12391] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12405] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12419] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12433] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12447] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12461] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12475] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12489] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12503] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [12517] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS"
## [12531] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL"
## [12545] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [12559] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [12573] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [12587] "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12601] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12615] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12629] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12643] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [12657] "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "PM" "PM" "PM"
## [12671] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [12685] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX" "DX" "DX" "DX" "AB" "AB"
## [12699] "CB" "RF" "PC" "PC" "PC" "PC" "PG" "PH" "UR" "UR" "UR" "CS" "SF" "SF"
## [12713] "SF" "SF" "SF" "SF" "SO" "SU" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12727] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12741] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12755] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [12769] "PB" "PB" "PB" "PB" "US" "US" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12783] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12797] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12811] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12825] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12839] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12853] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12867] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12881] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12895] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [12909] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12923] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12937] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12951] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12965] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12979] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [12993] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13007] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13021] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13035] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13049] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13063] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13077] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13091] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13105] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13119] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13133] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13147] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [13161] "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13175] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13189] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13203] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13217] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13231] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13245] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13259] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [13273] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE"
## [13287] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13301] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13315] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13329] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [13343] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS"
## [13357] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13371] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13385] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13399] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13413] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13427] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13441] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13455] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [13469] "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13483] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13497] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13511] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13525] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13539] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13553] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13567] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13581] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13595] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [13609] "PP" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13623] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13637] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13651] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13665] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [13679] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO"
## [13693] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [13707] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [13721] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [13735] "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL"
## [13749] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [13763] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13777] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13791] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13805] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13819] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13833] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13847] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13861] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [13875] "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [13889] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [13903] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH"
## [13917] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [13931] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [13945] "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [13959] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [13973] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CQ"
## [13987] "CQ" "CQ" "CQ" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "PC"
## [14001] "PC" "PC" "PC" "PU" "PU" "PU" "BA" "SO" "SO" "SO" "SO" "SO" "SO" "ST"
## [14015] "SU" "SU" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14029] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14043] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14057] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14071] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14085] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14099] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14113] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14127] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [14141] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL"
## [14155] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM"
## [14169] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14183] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14197] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14211] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14225] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14365] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14379] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14393] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14407] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14421] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14435] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14449] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14463] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14477] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14491] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14505] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14519] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14533] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14547] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14561] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14575] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14589] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14603] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14617] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14631] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14645] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14659] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14673] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [14687] "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14701] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14715] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14729] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [14743] "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [14757] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [14771] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14785] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14799] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14813] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14827] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14841] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14855] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14869] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14883] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14897] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14911] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14925] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14939] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14953] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14967] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14981] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [14995] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15009] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15023] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15037] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15051] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [15065] "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [15079] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [15093] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [15107] "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15121] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15135] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15149] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15163] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15177] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [15191] "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "OL"
## [15205] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [15219] "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [15233] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "PM" "PM" "PM"
## [15247] "PM" "AH" "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [15261] "AB" "AB" "AB" "AB" "CB" "CB" "CQ" "PH" "PH" "PH" "PH" "PH" "PH" "PH"
## [15275] "PH" "PH" "UP" "SF" "SU" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15289] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15303] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15317] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15331] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15345] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15359] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15373] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15387] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15401] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15415] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15429] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15443] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15457] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15471] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15485] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15499] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15513] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [15527] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL"
## [15541] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15555] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15569] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15583] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [15597] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15611] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15625] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15639] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15653] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15667] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15681] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15695] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15709] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15723] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15737] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15751] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15765] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15779] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15793] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15807] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15821] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15835] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15849] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15863] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15877] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15891] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15905] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15919] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15933] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15947] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15961] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15975] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [15989] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16003] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16017] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16031] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16045] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16059] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16073] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16087] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16101] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16115] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16129] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16143] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16157] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16171] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16185] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16199] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16213] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16227] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16241] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16255] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16269] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16283] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16297] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16311] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16325] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16339] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16353] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16367] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16381] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16395] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16409] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16423] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16437] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16451] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16465] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16479] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16493] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16507] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16521] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16535] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16549] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16563] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16577] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16591] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16605] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16619] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16647] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16661] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16675] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16689] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16703] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16717] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16731] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16745] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16759] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16773] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16787] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [16801] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF"
## [16815] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [16829] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [16843] "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [16857] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [16871] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16885] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16899] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16913] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16927] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16941] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [16955] "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [16969] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [16983] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [16997] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [17011] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [17025] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT"
## [17039] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17053] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17067] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17081] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17095] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [17109] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO"
## [17123] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17137] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17151] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17165] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [17179] "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [17193] "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17207] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17221] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17235] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17249] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17263] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17277] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [17291] "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [17305] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [17319] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA"
## [17333] "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [17347] "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [17361] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [17375] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [17389] "DX" "DX" "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB"
## [17403] "CB" "CB" "CB" "CB" "PC" "PC" "PG" "PH" "PB" "PB" "PB" "PB" "PL" "NL"
## [17417] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [17431] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM"
## [17445] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17459] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17473] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17487] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17501] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17515] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17529] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17543] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17557] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17571] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17585] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17599] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17613] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17627] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17641] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17655] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17669] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17683] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17697] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17711] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17725] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17739] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17753] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17767] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17781] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17795] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17809] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17823] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17837] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17851] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17865] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [17879] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF"
## [17893] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [17907] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [17921] "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [17935] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [17949] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS"
## [17963] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [17977] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [17991] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [18005] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [18019] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP"
## [18033] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18047] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18061] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18075] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [18089] "PP" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18103] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18117] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18131] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18145] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18159] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18173] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18187] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [18201] "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18215] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18229] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18243] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18257] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18271] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18285] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [18299] "DO" "OX" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [18313] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18327] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18341] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18355] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18369] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [18383] "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18397] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18411] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18425] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18439] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18453] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18467] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [18481] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM"
## [18495] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [18509] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [18523] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [18537] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "DX" "AB" "AB" "CB"
## [18551] "CQ" "CQ" "RF" "RF" "RF" "RF" "RF" "PH" "BA" "BA" "BA" "BA" "RO" "RX"
## [18565] "PL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [18579] "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18593] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18607] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18621] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18635] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18649] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18663] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18677] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18691] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18705] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18719] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18733] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18747] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18761] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18775] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18789] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [18803] "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18817] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18831] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18845] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18859] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18873] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18887] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18901] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [18915] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18929] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18943] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18957] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [18971] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS"
## [18985] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [18999] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19013] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19027] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19041] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19055] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19069] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [19083] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP"
## [19097] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19111] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19125] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19139] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19153] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19167] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19181] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19195] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19209] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19223] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19237] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19251] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19265] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19279] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [19293] "PP" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT"
## [19307] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19321] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19335] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19349] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19363] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19377] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19391] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19405] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19419] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19433] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [19447] "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19461] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19475] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19489] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19503] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19517] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19531] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19545] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19559] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19573] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19587] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19601] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19615] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19629] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19643] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19657] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [19671] "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [19685] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [19699] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [19713] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [19727] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM"
## [19741] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19755] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19769] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19783] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19797] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [19811] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "PM" "PM"
## [19825] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [19839] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AB"
## [19853] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [19867] "AB" "AB" "CB" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "PC" "PG" "UR"
## [19881] "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19895] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19909] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19923] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19937] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19951] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19965] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19979] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [19993] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20007] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20021] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20035] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20049] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20063] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20077] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20091] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20105] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [20119] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "CT" "NL" "NL" "NL" "NL" "NL"
## [20133] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20147] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20161] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20175] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20189] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20203] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20217] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20231] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20245] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20259] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20273] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20287] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20301] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20315] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20329] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20343] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20357] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20371] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20385] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20399] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20413] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20427] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20441] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20455] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20469] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20483] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20497] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20511] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20525] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20539] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20553] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20567] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20581] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20595] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20609] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20623] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20637] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20651] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20665] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20679] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20693] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20707] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20721] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20735] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20749] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20763] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20777] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20791] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20805] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20819] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20833] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20847] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20861] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20875] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20889] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20903] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20917] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20931] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20945] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20959] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20973] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [20987] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21001] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21015] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21029] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21043] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21057] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21071] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21085] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21099] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21113] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21127] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21141] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21155] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21169] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21183] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [21197] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF"
## [21211] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21225] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21239] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21253] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21267] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21281] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21295] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21309] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21323] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [21337] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "DS" "DS" "DS" "DS" "DS"
## [21351] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21365] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21379] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21393] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21407] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21421] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21435] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21449] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21463] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21477] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21491] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21505] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21519] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21533] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21547] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21561] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21575] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21589] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21603] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [21617] "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21631] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21645] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21659] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21673] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21687] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21701] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21715] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [21729] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "OT" "OT" "OT"
## [21743] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21757] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21771] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21785] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21799] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [21813] "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21827] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21841] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21855] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [21869] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS"
## [21883] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [21897] "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21911] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21925] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21939] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [21953] "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [21967] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "AH"
## [21981] "AH" "DX" "DX" "DX" "AB" "AB" "AB" "CB" "PC" "PI" "PB" "PB" "PB" "PB"
## [21995] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22009] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22023] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22037] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22051] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22065] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [22079] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL"
## [22093] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [22107] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [22121] "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22135] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22149] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22163] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22177] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22191] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22205] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22219] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22233] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22247] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22261] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22275] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22289] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22303] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22317] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22331] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22345] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22359] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22373] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22387] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22401] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22415] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22429] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22443] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22457] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22471] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [22485] "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22499] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22513] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22527] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22541] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22555] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22569] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [22583] "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22597] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22611] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22625] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [22639] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS"
## [22653] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22667] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22681] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22695] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22709] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22723] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22737] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [22751] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP"
## [22765] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22779] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22793] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22807] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22821] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22835] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22849] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22863] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [22877] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "OT" "OT" "OT"
## [22891] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22905] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22919] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22933] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22947] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22961] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22975] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [22989] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [23003] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [23017] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [23031] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [23045] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [23059] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [23073] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS"
## [23087] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL"
## [23101] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23115] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23129] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23143] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23157] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23171] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [23185] "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23199] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23213] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23227] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23241] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [23255] "RM" "RM" "RM" "RM" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [23269] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [23283] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH"
## [23297] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [23311] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [23325] "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [23339] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB"
## [23353] "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "CB" "RF"
## [23367] "RF" "RF" "RF" "RF" "RF" "PC" "PC" "PC" "PC" "PC" "PC" "PC" "PC" "PH"
## [23381] "PH" "PH" "PH" "PH" "UL" "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23395] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23409] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23423] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23437] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23451] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23465] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23479] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23493] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23507] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23521] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23535] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23549] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23563] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23577] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23591] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [23605] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PX" "PX" "US"
## [23619] "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [23633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [23647] "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23661] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23675] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23689] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23703] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23717] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23731] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23745] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23759] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23773] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [23787] "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23801] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23815] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23829] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23843] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [23857] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "PP" "PP" "PP"
## [23871] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23885] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23899] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23913] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23927] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23941] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23955] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23969] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23983] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [23997] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [24011] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [24025] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [24039] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH"
## [24053] "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24067] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24081] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24095] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24109] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [24123] "OT" "OT" "DO" "OX" "OX" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [24137] "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24151] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24165] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24179] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24193] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24207] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24221] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24235] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24249] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24263] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24277] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24291] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24305] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24319] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [24333] "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM" "PM"
## [24347] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24361] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24375] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24389] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24403] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24417] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24431] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [24445] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH"
## [24459] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [24473] "AB" "AB" "AB" "AB" "CQ" "RF" "RF" "PC" "SC" "BA" "BA" "BA" "BA" "BA"
## [24487] "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "BA" "SF" "SF" "SF" "SF"
## [24501] "SF" "SF" "SF" "RO" "AS" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24515] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24529] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24543] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24557] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24571] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24585] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24599] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24613] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24627] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24641] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24655] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24669] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24683] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24697] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24711] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24725] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24739] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24753] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [24767] "PB" "PB" "PL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24781] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24795] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24809] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24823] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24837] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24851] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [24865] "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24879] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24893] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24907] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24921] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24935] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24949] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24963] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24977] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [24991] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25005] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25019] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25033] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25047] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25061] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25075] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25089] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25103] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25117] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25131] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25145] "DM" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25159] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25173] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25187] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25201] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25215] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25229] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25243] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25257] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25271] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25285] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25299] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25313] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [25327] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [25341] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [25355] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [25369] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "SH" "SH" "SH" "SH" "OT"
## [25383] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [25397] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [25411] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO"
## [25425] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25439] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25453] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25467] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [25481] "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL"
## [25495] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25509] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25523] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25537] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25551] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25565] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25579] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25593] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25607] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25621] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25635] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [25649] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA"
## [25663] "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25677] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25691] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25705] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25719] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [25733] "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [25747] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [25761] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "RF" "RF" "RF" "RF" "RF"
## [25775] "PU" "SO" "SO" "SO" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL"
## [25789] "PL" "PL" "PL" "PL" "PL" "PL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25803] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25817] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25831] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [25845] "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25859] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25873] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25887] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25901] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25915] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25929] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25943] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25957] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25971] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25985] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [25999] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26013] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26027] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26041] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26055] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26069] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26083] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26097] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26111] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26125] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26139] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26153] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26167] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26181] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26195] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26209] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26223] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26237] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26251] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26265] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26279] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26293] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26307] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26321] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26335] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26349] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26363] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26377] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26391] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26405] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26419] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26433] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [26447] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF"
## [26461] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [26475] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE"
## [26489] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS"
## [26503] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26517] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26531] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26545] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26559] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26573] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26587] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26601] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26615] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26629] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26643] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26657] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26671] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26685] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26699] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26713] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [26727] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26741] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26755] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26769] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26783] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26797] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26811] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26825] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26839] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26853] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26867] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26881] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26895] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26909] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26923] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26937] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [26951] "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [26965] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [26979] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [26993] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27007] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27021] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27035] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [27049] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27063] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27077] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27091] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27105] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27119] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27133] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27147] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27161] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27175] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27189] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27203] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27217] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27231] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27245] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27259] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27273] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27287] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27301] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27315] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27329] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27343] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27357] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27371] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27385] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27399] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27413] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27427] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27441] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27455] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27469] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27483] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27497] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27511] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27525] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [27539] "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [27553] "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [27567] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [27581] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [27595] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM"
## [27609] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [27623] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "PM" "PM" "PM" "PM" "PM"
## [27637] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH"
## [27651] "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "PC" "PH" "PH"
## [27665] "PH" "UR" "UP" "UP" "UP" "BA" "RO" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27679] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27693] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27707] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27721] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27735] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27749] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27763] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [27777] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [27791] "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27805] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27819] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27833] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27847] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27861] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27875] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27889] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27903] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27917] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27931] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27945] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27959] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27973] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [27987] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28001] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28015] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28029] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28043] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28057] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28071] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28085] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28099] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28113] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28127] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28141] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28155] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28169] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28183] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28197] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28211] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28225] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28239] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28253] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28267] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28281] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28295] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28309] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28323] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28337] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [28351] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF"
## [28365] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [28379] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [28393] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [28407] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [28421] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28435] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28449] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28463] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28477] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28491] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28505] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28519] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28533] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28547] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28561] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28575] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28589] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28603] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28617] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [28631] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP"
## [28645] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28659] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28673] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28687] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28701] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28715] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28729] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28743] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28757] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28771] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28785] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28799] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28813] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28827] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28841] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [28855] "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28869] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28883] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28897] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28911] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28925] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28939] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [28953] "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [28967] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [28981] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [28995] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29009] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29023] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29037] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29051] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29065] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29079] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29093] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29107] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29121] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29135] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29149] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29163] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29177] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29191] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29205] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29219] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29233] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29247] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29261] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29275] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29289] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29303] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29317] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29331] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29345] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29359] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29373] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29387] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29401] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29415] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [29429] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS"
## [29443] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [29457] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [29471] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [29485] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [29499] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM"
## [29513] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM"
## [29527] "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [29541] "AH" "AH" "AH" "AH" "DX" "DX" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "CB"
## [29555] "CB" "CM" "PC" "UR" "UL" "PI" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29569] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29583] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29597] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29611] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29625] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29639] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [29653] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL"
## [29667] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL"
## [29681] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29695] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29709] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29723] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29737] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29751] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29765] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29779] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29793] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29807] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29821] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29835] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29849] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29863] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29877] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29891] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29905] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29919] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29933] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29947] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29961] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29975] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [29989] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30003] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30017] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30031] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30045] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30059] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30073] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30087] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30101] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30115] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30129] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30143] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30157] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30171] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30185] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30199] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30213] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30227] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30241] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30255] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30269] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30283] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30297] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30311] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30325] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30339] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30353] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30367] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30381] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30395] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30409] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30423] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30437] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30451] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30465] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30479] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30493] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30507] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30521] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30535] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30549] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30563] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30577] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30591] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30605] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30619] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30633] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30647] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [30661] "DM" "DM" "DM" "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [30675] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [30689] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE"
## [30703] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [30717] "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30731] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30745] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30759] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30773] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30787] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30801] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30815] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30829] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30843] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30857] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30871] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30885] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30899] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30913] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30927] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30941] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30955] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30969] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30983] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS"
## [30997] "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP"
## [31011] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31025] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31039] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31053] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31067] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31081] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31095] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31109] "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31123] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31137] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31151] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31165] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31179] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31193] "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31207] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31221] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31235] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31249] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31263] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31277] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31291] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31305] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31319] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31333] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31347] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31361] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31375] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [31389] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS"
## [31403] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS"
## [31417] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL" "OL" "OL" "OL"
## [31431] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31445] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31459] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31473] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [31487] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM" "RM"
## [31501] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [31515] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM" "PM" "PM" "PM" "PM" "PM"
## [31529] "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [31543] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "DX" "DX" "DX" "DX" "DX" "AB"
## [31557] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CM" "PC" "PC" "SF" "RX"
## [31571] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [31585] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL" "PL" "NL" "NL" "NL" "NL" "NL"
## [31599] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM"
## [31613] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [31627] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [31641] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PF"
## [31655] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31669] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31683] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31697] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31711] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31725] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31739] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31753] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31767] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31781] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31795] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF"
## [31809] "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE"
## [31823] "PE" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31837] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31851] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31865] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31879] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31893] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31907] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31921] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31935] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [31949] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH"
## [31963] "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "SH" "OT" "OT" "OT" "OT" "OT"
## [31977] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [31991] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [32005] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [32019] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [32033] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OX" "OX"
## [32047] "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL" "OL"
## [32061] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL"
## [32075] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32089] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32103] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32117] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32131] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32145] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32159] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32173] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32187] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32201] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32215] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32229] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32243] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32257] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32271] "RM" "RM" "RM" "RM" "RM" "RM" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32285] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32299] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH"
## [32313] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [32327] "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CM"
## [32341] "CM" "RF" "RF" "PG" "PG" "PH" "PH" "PH" "PH" "PH" "PH" "PH" "PH" "PH"
## [32355] "BA" "BA" "BA" "SF" "SF" "SF" "SF" "SF" "SF" "SF" "SU" "PB" "PB" "PB"
## [32369] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32383] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32397] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32411] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32425] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32439] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32453] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32467] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32481] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32495] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32509] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32523] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32537] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32551] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32565] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32579] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32593] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32607] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32621] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32635] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32649] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32663] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32677] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32691] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32705] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [32719] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "NL" "NL" "DM" "DM"
## [32733] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [32747] "DS" "DS" "DS" "DS" "PP" "PP" "SH" "SH" "OT" "OT" "OT" "OT" "OT" "OT"
## [32761] "OT" "OT" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL"
## [32775] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM"
## [32789] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32803] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32817] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32831] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32845] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32859] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32873] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32887] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32901] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32915] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32929] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [32943] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA"
## [32957] "SA" "SA" "SA" "SA" "SA" "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32971] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32985] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [32999] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33013] "PM" "PM" "PM" "PM" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CM" "CM"
## [33027] "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "RF" "PC" "PC"
## [33041] "PC" "UR" "RO" "RO" "PB" "PL" "PL" "PL" "PL" "PL" "PL" "PL" "NL" "NL"
## [33055] "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33069] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33083] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33097] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33111] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33125] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33139] "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33153] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33167] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33181] "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP" "PP"
## [33195] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [33209] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [33223] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33237] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33251] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33265] "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [33279] "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "DO"
## [33293] "DO" "DO" "DO" "DO" "DO" "DO" "SS" "SS" "SS" "SS" "SS" "SS" "OL" "OL"
## [33307] "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "OL" "RM" "RM" "RM" "RM" "RM"
## [33321] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33335] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33349] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33363] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33377] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33391] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33405] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33419] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33433] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33447] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33461] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33475] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "PM" "PM" "PM" "PM"
## [33489] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33503] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33517] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33531] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH"
## [33545] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "DX" "AB" "AB" "AB" "AB" "AB"
## [33559] "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CQ" "CQ" "RF" "PG" "PB" "PB" "PB"
## [33573] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [33587] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PL"
## [33601] "PL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33615] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [33629] "DM" "PF" "PF" "PF" "PF" "PF" "PF" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33643] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33657] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33671] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [33685] "PE" "PE" "PE" "PE" "PE" "PE" "DS" "DS" "DS" "DS" "DS" "PP" "PP" "PP"
## [33699] "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [33713] "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "OL"
## [33727] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33741] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33755] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33769] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33783] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33797] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33811] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33825] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33839] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33853] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33867] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33881] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33895] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [33909] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "SA" "SA" "SA" "SA" "SA" "SA" "SA"
## [33923] "SA" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33937] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33951] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33965] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [33979] "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [33993] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB"
## [34007] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [34021] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "CB" "CB" "CB" "CM" "CQ" "CQ"
## [34035] "CQ" "CQ" "RF" "RF" "RF" "PC" "PC" "PC" "PU" "UP" "UP" "ZL" "SF" "RO"
## [34049] "RO" "PB" "PB" "PB" "PL" "PL" "PL" "PL" "PX" "NL" "NL" "NL" "NL" "NL"
## [34063] "NL" "NL" "NL" "NL" "NL" "NL" "NL" "DM" "DM" "DM" "DM" "DM" "DM" "DM"
## [34077] "DM" "DM" "DM" "DM" "DM" "DM" "DM" "PF" "PE" "PE" "PE" "PE" "PE" "PE"
## [34091] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34105] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34119] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34133] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34147] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34161] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34175] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34189] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34203] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34217] "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE" "PE"
## [34231] "PE" "PE" "DS" "DS" "DS" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34245] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34259] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34273] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34287] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34301] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34315] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34329] "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP" "PP"
## [34343] "PP" "PP" "PP" "PP" "PP" "PP" "OT" "OT" "OT" "OT" "OT" "OT" "OT" "OT"
## [34357] "OT" "OT" "OT" "OT" "OT" "DO" "DO" "DO" "DO" "DO" "DO" "DO" "SS" "RM"
## [34371] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34385] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34399] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34413] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34427] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34441] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34455] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34469] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34483] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34497] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34511] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34525] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34539] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34553] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34567] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34581] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34595] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34609] "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM" "RM"
## [34623] "RM" "RM" "RM" "RM" "RM" "RM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34637] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34651] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34665] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34679] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM" "PM"
## [34693] "PM" "PM" "PM" "PM" "PM" "PM" "PM" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [34707] "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH" "AH"
## [34721] "AH" "AH" "AH" "AH" "AH" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [34735] "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB" "AB"
## [34749] "CB" "CB" "CB" "CB" "RF" "RF" "PC" "UR" "CU" "PB" "PB" "PB" "PB" "PB"
## [34763] "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB" "PB"
## [34777] "PB" "PB" "PB" "PL" "PL" "PL" "PL" "PL" "PX" "PX"
Challenge
# 1
data.frame(surveys)
## record_id month day year plot_id species_id sex hindfoot_length weight
## 1 1 7 16 1977 2 NL M 32 NA
## 2 72 8 19 1977 2 NL M 31 NA
## 3 224 9 13 1977 2 NL <NA> NA NA
## 4 266 10 16 1977 2 NL <NA> NA NA
## 5 349 11 12 1977 2 NL <NA> NA NA
## 6 363 11 12 1977 2 NL <NA> NA NA
## 7 435 12 10 1977 2 NL <NA> NA NA
## 8 506 1 8 1978 2 NL <NA> NA NA
## 9 588 2 18 1978 2 NL M NA 218
## 10 661 3 11 1978 2 NL <NA> NA NA
## 11 748 4 8 1978 2 NL <NA> NA NA
## 12 845 5 6 1978 2 NL M 32 204
## 13 990 6 9 1978 2 NL M NA 200
## 14 1164 8 5 1978 2 NL M 34 199
## 15 1261 9 4 1978 2 NL M 32 197
## 16 1374 10 8 1978 2 NL <NA> NA NA
## 17 1453 11 5 1978 2 NL M NA 218
## 18 1756 4 29 1979 2 NL M 33 166
## 19 1818 5 30 1979 2 NL M 32 184
## 20 1882 7 4 1979 2 NL M 32 206
## 21 2133 10 25 1979 2 NL F 33 274
## 22 2184 11 17 1979 2 NL F 30 186
## 23 2406 1 16 1980 2 NL F 33 184
## 24 2728 3 9 1980 2 NL F NA NA
## 25 3000 5 18 1980 2 NL F 31 87
## 26 3002 5 18 1980 2 NL F 33 174
## 27 4667 7 8 1981 2 NL F 30 130
## 28 4859 10 1 1981 2 NL M 34 208
## 29 5048 11 23 1981 2 NL M 34 192
## 30 5180 1 1 1982 2 NL M NA 206
## 31 5299 1 25 1982 2 NL F 32 165
## 32 5485 2 24 1982 2 NL M 34 202
## 33 5558 3 29 1982 2 NL M 33 211
## 34 5583 3 29 1982 2 NL M 31 120
## 35 5966 5 22 1982 2 NL F 32 40
## 36 6020 6 28 1982 2 NL M 33 222
## 37 6023 6 28 1982 2 NL F 30 100
## 38 6036 6 28 1982 2 NL F 33 120
## 39 6167 7 25 1982 2 NL M NA 219
## 40 6479 8 16 1982 2 NL F 31 112
## 41 6500 8 16 1982 2 NL F 33 152
## 42 8022 6 18 1983 2 NL F 30 126
## 43 8263 8 16 1983 2 NL F 32 147
## 44 8387 9 11 1983 2 NL F 32 138
## 45 8394 9 11 1983 2 NL F 32 161
## 46 8407 9 11 1983 2 NL M 33 148
## 47 8514 10 16 1983 2 NL F 32 151
## 48 8543 10 16 1983 2 NL F 31 175
## 49 8657 11 13 1983 2 NL F 32 158
## 50 8675 11 13 1983 2 NL F 32 164
## 51 8755 12 9 1983 2 NL F 32 150
## 52 9048 4 10 1984 2 NL F 32 157
## 53 9132 5 13 1984 2 NL M 32 125
## 54 9270 5 28 1984 2 NL M 33 125
## 55 9349 7 4 1984 2 NL M 35 130
## 56 9512 8 26 1984 2 NL F 31 151
## 57 9605 9 30 1984 2 NL F 32 173
## 58 9703 10 21 1984 2 NL M 30 126
## 59 10606 7 24 1985 2 NL F 30 91
## 60 10617 7 24 1985 2 NL M 32 186
## 61 10627 7 24 1985 2 NL F 32 174
## 62 10720 8 20 1985 2 NL F 31 106
## 63 10923 10 13 1985 2 NL F 31 136
## 64 10949 10 13 1985 2 NL F 33 148
## 65 11215 12 8 1985 2 NL F 32 160
## 66 11329 3 9 1986 2 NL M 34 240
## 67 11496 5 11 1986 2 NL F 31 163
## 68 11498 5 11 1986 2 NL F 31 82
## 69 11611 6 5 1986 2 NL F 32 110
## 70 11628 6 5 1986 2 NL M 34 227
## 71 11709 7 4 1986 2 NL F 31 184
## 72 11877 9 7 1986 2 NL M 34 202
## 73 11879 9 7 1986 2 NL F 32 135
## 74 11887 9 7 1986 2 NL M 33 177
## 75 11953 10 5 1986 2 NL M 33 221
## 76 12299 2 1 1987 2 NL M 32 253
## 77 12458 3 2 1987 2 NL M 33 259
## 78 12602 4 6 1987 2 NL M 34 260
## 79 12678 4 26 1987 2 NL M 30 79
## 80 12708 4 26 1987 2 NL F 28 72
## 81 12729 4 26 1987 2 NL M 32 270
## 82 12756 5 28 1987 2 NL F 30 99
## 83 12871 5 28 1987 2 NL M 32 278
## 84 12997 7 1 1987 2 NL F 30 136
## 85 13025 7 1 1987 2 NL M 33 260
## 86 13114 7 26 1987 2 NL M NA 269
## 87 13275 8 26 1987 2 NL M NA NA
## 88 13326 8 26 1987 2 NL F 32 146
## 89 13434 9 27 1987 2 NL M 33 197
## 90 13465 9 27 1987 2 NL F 32 167
## 91 13476 9 27 1987 2 NL F 33 146
## 92 13615 10 25 1987 2 NL M 34 203
## 93 13630 10 25 1987 2 NL F 30 176
## 94 13748 11 22 1987 2 NL M 34 214
## 95 13977 1 24 1988 2 NL F 34 161
## 96 14646 6 12 1988 2 NL F 34 148
## 97 14740 7 15 1988 2 NL F NA NA
## 98 14796 8 10 1988 2 NL M 34 188
## 99 14804 8 10 1988 2 NL M 31 132
## 100 14896 9 12 1988 2 NL M 34 161
## 101 14984 10 9 1988 2 NL M 35 170
## 102 15302 12 14 1988 2 NL M 35 248
## 103 15780 3 13 1989 2 NL M 33 242
## 104 16407 7 30 1989 2 NL F 33 97
## 105 17230 2 25 1990 2 NL M 33 218
## 106 17877 9 25 1990 2 NL F NA 176
## 107 17941 10 16 1990 2 NL F 33 195
## 108 18110 12 15 1990 2 NL F 33 193
## 109 18364 2 16 1991 2 NL F 33 185
## 110 18486 3 13 1991 2 NL F 33 174
## 111 18639 4 21 1991 2 NL F 33 126
## 112 18678 5 13 1991 2 NL F 31 81
## 113 18680 5 13 1991 2 NL F 33 185
## 114 18846 7 12 1991 2 NL M 33 154
## 115 18948 8 7 1991 2 NL M 32 178
## 116 19032 9 9 1991 2 NL M 31 180
## 117 19245 11 13 1991 2 NL F 36 165
## 118 20040 5 30 1992 2 NL F 36 220
## 119 20089 7 3 1992 2 NL F 21 130
## 120 20364 9 26 1992 2 NL F 32 114
## 121 20466 10 18 1992 2 NL F 33 135
## 122 20992 7 14 1993 2 NL M 32 78
## 123 21113 9 16 1993 2 NL M NA NA
## 124 21120 9 16 1993 2 NL M 37 138
## 125 21161 10 15 1993 2 NL M 32 148
## 126 21232 11 13 1993 2 NL M 35 154
## 127 21235 11 13 1993 2 NL M 34 160
## 128 21286 12 14 1993 2 NL M 32 153
## 129 21507 4 10 1994 2 NL M NA 180
## 130 21558 5 18 1994 2 NL M 35 NA
## 131 22314 6 7 1995 2 NL M 34 NA
## 132 22728 9 23 1995 2 NL F 32 165
## 133 22899 10 28 1995 2 NL F 32 171
## 134 23032 12 2 1995 2 NL F 33 NA
## 135 24589 10 12 1996 2 NL M 33 127
## 136 24690 11 16 1996 2 NL F 33 130
## 137 24703 11 16 1996 2 NL M 33 148
## 138 25247 3 15 1997 2 NL M 34 147
## 139 25701 5 10 1997 2 NL F 32 144
## 140 26028 6 9 1997 2 NL M 34 193
## 141 26644 7 29 1997 2 NL F 30 178
## 142 26827 9 27 1997 2 NL F 33 138
## 143 26857 9 27 1997 2 NL F 33 174
## 144 27042 10 25 1997 2 NL F 34 186
## 145 27326 12 28 1997 2 NL F 33 181
## 146 27734 3 29 1998 2 NL F 33 188
## 147 27781 5 2 1998 2 NL <NA> NA 200
## 148 27860 5 28 1998 2 NL F 33 190
## 149 27897 5 28 1998 2 NL M 21 110
## 150 27919 5 28 1998 2 NL F 34 158
## 151 28022 6 27 1998 2 NL F 31 182
## 152 28077 6 27 1998 2 NL M 30 132
## 153 28328 8 22 1998 2 NL F 30 143
## 154 28551 9 20 1998 2 NL M 31 178
## 155 28556 9 20 1998 2 NL M 30 149
## 156 28662 10 24 1998 2 NL M 34 168
## 157 28928 12 22 1998 2 NL F 31 165
## 158 29039 1 16 1999 2 NL F 34 162
## 159 29310 3 14 1999 2 NL F 32 153
## 160 29435 4 17 1999 2 NL M 34 220
## 161 29572 5 15 1999 2 NL F 33 154
## 162 29823 9 11 1999 2 NL F 33 200
## 163 29865 10 9 1999 2 NL F 32 194
## 164 29950 11 6 1999 2 NL F 33 195
## 165 30066 12 5 1999 2 NL F 33 131
## 166 30067 12 5 1999 2 NL <NA> NA 194
## 167 30172 1 8 2000 2 NL F 30 137
## 168 30174 1 8 2000 2 NL F 33 181
## 169 30175 1 8 2000 2 NL M 34 265
## 170 30307 2 5 2000 2 NL F 33 185
## 171 30308 2 5 2000 2 NL F 31 144
## 172 30309 2 5 2000 2 NL <NA> NA 183
## 173 30443 3 4 2000 2 NL M 33 184
## 174 30741 6 3 2000 2 NL F 33 158
## 175 31516 11 25 2000 2 NL F 29 200
## 176 31517 11 25 2000 2 NL M 32 228
## 177 31633 12 22 2000 2 NL F 31 173
## 178 31717 1 21 2001 2 NL M 33 121
## 179 31721 1 21 2001 2 NL F 31 158
## 180 31862 3 24 2001 2 NL F 32 252
## 181 31946 4 21 2001 2 NL F 33 145
## 182 32045 5 26 2001 2 NL M 32 135
## 183 32167 6 25 2001 2 NL F 30 173
## 184 32391 8 25 2001 2 NL F 33 193
## 185 32817 10 13 2001 2 NL F 29 72
## 186 33040 11 17 2001 2 NL F 31 119
## 187 33041 11 17 2001 2 NL F 33 213
## 188 33237 12 15 2001 2 NL F 33 126
## 189 33238 12 15 2001 2 NL F 32 198
## 190 33339 1 12 2002 2 NL <NA> NA NA
## 191 33415 2 9 2002 2 NL M 33 120
## 192 33583 3 13 2002 2 NL M 32 136
## 193 33586 3 13 2002 2 NL F 32 196
## 194 33837 4 17 2002 2 NL F NA 190
## 195 33847 4 17 2002 2 NL F 30 149
## 196 33966 5 15 2002 2 NL F 31 188
## 197 34198 6 15 2002 2 NL F 31 139
## 198 34783 10 5 2002 2 NL M 36 226
## 199 34991 11 9 2002 2 NL M 33 238
## 200 35212 12 7 2002 2 NL M 33 248
## 201 35404 12 29 2002 2 NL F 30 NA
## 202 3 7 16 1977 2 DM F 37 NA
## 203 226 9 13 1977 2 DM M 37 51
## 204 233 9 13 1977 2 DM M 25 44
## 205 245 10 16 1977 2 DM M 37 39
## 206 251 10 16 1977 2 DM M 36 49
## 207 257 10 16 1977 2 DM M 37 47
## 208 259 10 16 1977 2 DM M 36 41
## 209 268 10 16 1977 2 DM F 36 55
## 210 346 11 12 1977 2 DM F 37 36
## 211 350 11 12 1977 2 DM M 37 47
## 212 354 11 12 1977 2 DM M 38 44
## 213 361 11 12 1977 2 DM F 36 40
## 214 422 12 10 1977 2 DM F 37 42
## 215 424 12 10 1977 2 DM M 37 52
## 216 427 12 10 1977 2 DM F 37 37
## 217 438 12 10 1977 2 DM M 36 47
## 218 449 12 10 1977 2 DM M 35 43
## 219 507 1 8 1978 2 DM M 35 44
## 220 511 1 8 1978 2 DM M 36 38
## 221 518 1 8 1978 2 DM M 36 38
## 222 519 1 8 1978 2 DM M 38 48
## 223 521 1 8 1978 2 DM M 36 43
## 224 522 1 8 1978 2 DM F 37 35
## 225 523 1 8 1978 2 DM M 36 43
## 226 527 1 8 1978 2 DM F 37 37
## 227 533 1 8 1978 2 DM M NA 45
## 228 593 2 18 1978 2 DM M 38 52
## 229 595 2 18 1978 2 DM M 37 51
## 230 600 2 18 1978 2 DM F 37 40
## 231 601 2 18 1978 2 DM M 36 41
## 232 660 3 11 1978 2 DM M 37 53
## 233 664 3 11 1978 2 DM M 35 43
## 234 733 4 8 1978 2 DM M 33 NA
## 235 754 4 8 1978 2 DM M 37 NA
## 236 757 4 8 1978 2 DM F NA NA
## 237 764 4 8 1978 2 DM M 35 NA
## 238 838 5 6 1978 2 DM M 37 48
## 239 842 5 6 1978 2 DM F 38 41
## 240 849 5 6 1978 2 DM M 36 43
## 241 914 5 19 1978 2 DM F NA 41
## 242 924 5 19 1978 2 DM M 37 49
## 243 930 5 19 1978 2 DM M 36 44
## 244 1018 6 9 1978 2 DM M 36 43
## 245 1061 7 7 1978 2 DM F 38 46
## 246 1062 7 7 1978 2 DM F 37 43
## 247 1159 8 5 1978 2 DM F 36 31
## 248 1183 8 5 1978 2 DM F 37 47
## 249 1269 9 4 1978 2 DM F 38 41
## 250 1272 9 4 1978 2 DM F 36 42
## 251 1277 9 4 1978 2 DM F 38 47
## 252 1370 10 8 1978 2 DM F 36 39
## 253 1382 10 8 1978 2 DM F 38 42
## 254 1461 11 5 1978 2 DM F 36 38
## 255 1469 11 5 1978 2 DM F 38 41
## 256 1519 12 3 1978 2 DM M 38 46
## 257 1529 12 3 1978 2 DM M 38 38
## 258 1534 12 3 1978 2 DM F 37 40
## 259 1535 12 3 1978 2 DM F 38 43
## 260 1539 12 3 1978 2 DM M 36 49
## 261 1581 1 29 1979 2 DM F 38 42
## 262 1611 1 29 1979 2 DM F NA 43
## 263 1644 2 25 1979 2 DM F 37 44
## 264 1661 2 25 1979 2 DM F 35 44
## 265 1676 3 31 1979 2 DM M 36 54
## 266 1692 3 31 1979 2 DM M 37 45
## 267 1701 3 31 1979 2 DM F 36 46
## 268 1768 4 29 1979 2 DM M 39 43
## 269 1839 5 30 1979 2 DM M 37 50
## 270 1845 5 30 1979 2 DM F 36 53
## 271 1846 5 30 1979 2 DM M 37 45
## 272 2014 8 23 1979 2 DM M 38 49
## 273 2060 9 23 1979 2 DM F 35 46
## 274 2070 9 23 1979 2 DM M 37 51
## 275 2122 10 25 1979 2 DM F 35 35
## 276 2131 10 25 1979 2 DM F 37 47
## 277 2176 11 17 1979 2 DM M 37 50
## 278 2181 11 17 1979 2 DM F 36 49
## 279 2338 1 16 1980 2 DM F 36 46
## 280 2339 1 16 1980 2 DM F 35 37
## 281 2340 1 16 1980 2 DM F 34 42
## 282 2372 1 16 1980 2 DM F 36 37
## 283 2400 1 16 1980 2 DM F 36 42
## 284 2456 2 25 1980 2 DM F 36 48
## 285 2460 2 25 1980 2 DM F 37 46
## 286 2525 2 25 1980 2 DM F 36 45
## 287 2555 3 9 1980 2 DM M NA 42
## 288 2589 3 9 1980 2 DM F NA 46
## 289 2600 3 9 1980 2 DM F NA 38
## 290 2622 3 9 1980 2 DM M NA 43
## 291 2631 3 9 1980 2 DM M NA 44
## 292 2635 3 9 1980 2 DM F NA 52
## 293 2643 3 9 1980 2 DM M NA 43
## 294 2653 3 9 1980 2 DM M NA 51
## 295 2662 3 9 1980 2 DM M NA 47
## 296 2667 3 9 1980 2 DM F NA 46
## 297 2692 3 9 1980 2 DM M NA 45
## 298 2695 3 9 1980 2 DM M NA 45
## 299 2701 3 9 1980 2 DM F NA 49
## 300 2715 3 9 1980 2 DM F NA 50
## 301 2740 3 9 1980 2 DM F NA 45
## 302 2790 3 22 1980 2 DM F NA 59
## 303 2814 3 22 1980 2 DM F NA 44
## 304 2901 4 18 1980 2 DM F NA 53
## 305 2902 4 18 1980 2 DM M NA 48
## 306 2906 4 18 1980 2 DM M NA 43
## 307 2975 5 18 1980 2 DM M 35 43
## 308 2981 5 18 1980 2 DM F 36 56
## 309 3033 6 2 1980 2 DM F NA 45
## 310 3035 6 2 1980 2 DM M 38 46
## 311 3099 6 23 1980 2 DM M 35 42
## 312 3107 6 23 1980 2 DM F 35 53
## 313 3182 7 22 1980 2 DM M 36 43
## 314 3236 8 14 1980 2 DM M 35 42
## 315 3302 9 8 1980 2 DM M 35 45
## 316 3388 10 12 1980 2 DM M 34 45
## 317 3454 11 9 1980 2 DM F 35 38
## 318 3456 11 9 1980 2 DM F 36 45
## 319 3525 11 9 1980 2 DM M 34 42
## 320 3547 12 15 1980 2 DM M 34 48
## 321 3550 12 15 1980 2 DM F 37 46
## 322 3564 12 15 1980 2 DM M 35 49
## 323 3566 12 15 1980 2 DM M 34 47
## 324 3569 12 15 1980 2 DM M 34 33
## 325 3580 12 15 1980 2 DM M 35 42
## 326 3738 1 12 1981 2 DM M 35 47
## 327 3741 1 12 1981 2 DM M 37 50
## 328 3781 1 12 1981 2 DM M 35 54
## 329 3790 1 12 1981 2 DM M 35 41
## 330 3867 2 1 1981 2 DM M 37 48
## 331 3877 2 1 1981 2 DM M 37 50
## 332 3889 2 1 1981 2 DM M 36 48
## 333 3897 2 1 1981 2 DM M 37 49
## 334 3899 2 1 1981 2 DM M 36 44
## 335 3901 2 1 1981 2 DM M 37 39
## 336 3947 3 9 1981 2 DM M 35 51
## 337 3960 3 9 1981 2 DM M 37 49
## 338 3979 3 9 1981 2 DM F 34 51
## 339 3998 3 9 1981 2 DM F 36 30
## 340 4004 3 9 1981 2 DM M 36 40
## 341 4198 4 6 1981 2 DM M NA 50
## 342 4238 4 6 1981 2 DM M NA 46
## 343 4243 4 6 1981 2 DM F NA 44
## 344 4251 4 6 1981 2 DM F NA 47
## 345 4268 4 6 1981 2 DM F NA 50
## 346 4271 4 6 1981 2 DM F NA 45
## 347 4276 4 6 1981 2 DM M NA 46
## 348 4306 4 6 1981 2 DM M NA 41
## 349 4317 4 6 1981 2 DM M NA 51
## 350 4320 4 6 1981 2 DM F NA 46
## 351 4341 4 6 1981 2 DM M NA 43
## 352 4347 4 6 1981 2 DM F NA 34
## 353 4452 5 4 1981 2 DM M 36 48
## 354 4482 5 4 1981 2 DM M 37 44
## 355 4520 6 4 1981 2 DM M 34 38
## 356 4548 6 4 1981 2 DM M 36 44
## 357 4685 7 8 1981 2 DM M 37 45
## 358 4693 7 30 1981 2 DM M 37 45
## 359 4714 7 30 1981 2 DM M 37 45
## 360 4952 10 26 1981 2 DM F 37 38
## 361 5044 11 23 1981 2 DM F 36 36
## 362 5063 11 23 1981 2 DM M 37 44
## 363 5167 1 1 1982 2 DM M 35 45
## 364 5288 1 25 1982 2 DM M 35 44
## 365 5483 2 24 1982 2 DM M 34 44
## 366 6006 6 28 1982 2 DM F 35 32
## 367 6184 7 25 1982 2 DM M NA 38
## 368 6470 8 16 1982 2 DM M 35 39
## 369 6474 8 16 1982 2 DM M 36 40
## 370 6491 8 16 1982 2 DM <NA> NA NA
## 371 6520 9 18 1982 2 DM M 37 40
## 372 6523 9 18 1982 2 DM F 36 38
## 373 6528 9 18 1982 2 DM M 34 45
## 374 6549 9 18 1982 2 DM F 34 33
## 375 6553 9 18 1982 2 DM M 36 40
## 376 6824 10 24 1982 2 DM M 37 43
## 377 6832 10 24 1982 2 DM M 37 40
## 378 6837 10 24 1982 2 DM F 35 36
## 379 6842 10 24 1982 2 DM M 34 42
## 380 6889 10 24 1982 2 DM F 36 37
## 381 6939 10 24 1982 2 DM M 37 44
## 382 6944 10 24 1982 2 DM M 38 43
## 383 6945 10 24 1982 2 DM F 36 39
## 384 7061 11 22 1982 2 DM M 36 39
## 385 7080 11 22 1982 2 DM F 33 37
## 386 7246 1 13 1983 2 DM M 36 40
## 387 7294 1 13 1983 2 DM F 35 36
## 388 7402 2 27 1983 2 DM M 35 44
## 389 7420 2 27 1983 2 DM F 36 42
## 390 7553 3 15 1983 2 DM M 37 43
## 391 7558 3 15 1983 2 DM F 35 36
## 392 7715 4 17 1983 2 DM M 36 45
## 393 7723 4 17 1983 2 DM F 37 39
## 394 7735 4 17 1983 2 DM M 37 41
## 395 7884 5 15 1983 2 DM F 36 40
## 396 7895 5 15 1983 2 DM M 36 48
## 397 7916 5 15 1983 2 DM M 36 46
## 398 8125 7 17 1983 2 DM M 35 38
## 399 8235 8 16 1983 2 DM M 36 38
## 400 8339 9 11 1983 2 DM M 34 38
## 401 8359 9 11 1983 2 DM F 35 42
## 402 8413 9 11 1983 2 DM M 36 43
## 403 8494 10 16 1983 2 DM M 34 37
## 404 8631 11 13 1983 2 DM M 35 37
## 405 8656 11 13 1983 2 DM F 35 37
## 406 8800 12 9 1983 2 DM F 36 37
## 407 8903 2 5 1984 2 DM F 37 36
## 408 8954 3 13 1984 2 DM M 36 43
## 409 8961 3 13 1984 2 DM F 35 38
## 410 9034 4 10 1984 2 DM M 35 41
## 411 9133 5 13 1984 2 DM F 36 44
## 412 9156 5 13 1984 2 DM M 35 45
## 413 9180 5 13 1984 2 DM M 37 46
## 414 9182 5 13 1984 2 DM F 36 45
## 415 9269 5 28 1984 2 DM M 37 44
## 416 9452 8 1 1984 2 DM F 34 39
## 417 9572 9 30 1984 2 DM F 35 34
## 418 9672 10 21 1984 2 DM F 37 40
## 419 9762 12 31 1984 2 DM F 36 36
## 420 9767 12 31 1984 2 DM F 37 34
## 421 9873 1 20 1985 2 DM F 35 30
## 422 9880 1 20 1985 2 DM M 37 44
## 423 9894 1 20 1985 2 DM F 35 33
## 424 9901 1 20 1985 2 DM M 37 35
## 425 9920 1 20 1985 2 DM F 36 36
## 426 9980 2 17 1985 2 DM F 35 37
## 427 9984 2 17 1985 2 DM M 36 39
## 428 10001 2 17 1985 2 DM F 35 39
## 429 10004 2 17 1985 2 DM F 34 37
## 430 10006 2 17 1985 2 DM F 35 42
## 431 10021 2 17 1985 2 DM M 35 44
## 432 10031 2 17 1985 2 DM F 36 37
## 433 10092 3 17 1985 2 DM F 35 38
## 434 10109 3 17 1985 2 DM F 36 43
## 435 10114 3 17 1985 2 DM F 35 39
## 436 10254 4 21 1985 2 DM M 35 27
## 437 10277 4 21 1985 2 DM F 37 44
## 438 10290 4 21 1985 2 DM F 36 44
## 439 10318 4 21 1985 2 DM F 37 43
## 440 10354 4 21 1985 2 DM F 35 39
## 441 10363 4 21 1985 2 DM F 37 43
## 442 10366 4 21 1985 2 DM M 37 46
## 443 10411 5 24 1985 2 DM M 35 33
## 444 10415 5 24 1985 2 DM F 36 40
## 445 10421 5 24 1985 2 DM F 35 39
## 446 10430 5 24 1985 2 DM F 33 17
## 447 10447 5 24 1985 2 DM F 35 38
## 448 10500 6 16 1985 2 DM F 36 42
## 449 10517 6 16 1985 2 DM F 32 15
## 450 10518 6 16 1985 2 DM F 36 40
## 451 10532 6 16 1985 2 DM F 33 30
## 452 10595 7 24 1985 2 DM F 37 41
## 453 10600 7 24 1985 2 DM F 32 17
## 454 10603 7 24 1985 2 DM F 36 37
## 455 10610 7 24 1985 2 DM F 33 32
## 456 10621 7 24 1985 2 DM F 37 36
## 457 10623 7 24 1985 2 DM F 35 33
## 458 10686 8 20 1985 2 DM F 35 48
## 459 10693 8 20 1985 2 DM F 34 24
## 460 10716 8 20 1985 2 DM F 35 38
## 461 10784 9 22 1985 2 DM F 37 46
## 462 10802 9 22 1985 2 DM F 37 59
## 463 10804 9 22 1985 2 DM F 33 41
## 464 10899 10 13 1985 2 DM M 37 42
## 465 10909 10 13 1985 2 DM F 37 48
## 466 10920 10 13 1985 2 DM F 37 40
## 467 11013 11 17 1985 2 DM M 38 43
## 468 11015 11 17 1985 2 DM M 34 46
## 469 11063 11 17 1985 2 DM F 37 46
## 470 11074 11 17 1985 2 DM M 37 46
## 471 11092 11 17 1985 2 DM F 36 39
## 472 11148 12 8 1985 2 DM M 37 44
## 473 11150 12 8 1985 2 DM M 37 47
## 474 11161 12 8 1985 2 DM F 37 39
## 475 11186 12 8 1985 2 DM M 38 42
## 476 11187 12 8 1985 2 DM M 36 48
## 477 11197 12 8 1985 2 DM F 37 44
## 478 11210 12 8 1985 2 DM F 35 40
## 479 11284 3 9 1986 2 DM M 38 44
## 480 11291 3 9 1986 2 DM F 37 40
## 481 11304 3 9 1986 2 DM M 36 48
## 482 11305 3 9 1986 2 DM F 36 49
## 483 11316 3 9 1986 2 DM F 36 38
## 484 11327 3 9 1986 2 DM M 37 50
## 485 11387 4 13 1986 2 DM M 37 42
## 486 11388 4 13 1986 2 DM F 37 42
## 487 11391 4 13 1986 2 DM M 34 26
## 488 11408 4 13 1986 2 DM F 35 49
## 489 11421 4 13 1986 2 DM M 38 44
## 490 11489 5 11 1986 2 DM M 37 44
## 491 11514 5 11 1986 2 DM M 38 37
## 492 11515 5 11 1986 2 DM F 34 43
## 493 11535 5 11 1986 2 DM M 34 46
## 494 11584 6 5 1986 2 DM M 37 47
## 495 11595 6 5 1986 2 DM M 37 47
## 496 11600 6 5 1986 2 DM M 37 36
## 497 11608 6 5 1986 2 DM F 37 53
## 498 11684 7 4 1986 2 DM M 37 47
## 499 11695 7 4 1986 2 DM F 35 43
## 500 11722 7 4 1986 2 DM M 35 36
## 501 11772 8 10 1986 2 DM M 38 46
## 502 11784 8 10 1986 2 DM M 34 31
## 503 11788 8 10 1986 2 DM M 38 40
## 504 11791 8 10 1986 2 DM M 35 45
## 505 11841 9 7 1986 2 DM M 36 46
## 506 11862 9 7 1986 2 DM M 35 45
## 507 11920 10 5 1986 2 DM M 37 53
## 508 12011 11 16 1986 2 DM F 36 46
## 509 12014 11 16 1986 2 DM M 35 49
## 510 12056 11 16 1986 2 DM M 35 44
## 511 12117 12 15 1986 2 DM F 36 44
## 512 12137 12 15 1986 2 DM M 37 49
## 513 12138 12 15 1986 2 DM F 35 39
## 514 12234 2 1 1987 2 DM M 32 45
## 515 12249 2 1 1987 2 DM F 36 45
## 516 12389 3 2 1987 2 DM M 35 47
## 517 12394 3 2 1987 2 DM F 34 38
## 518 12407 3 2 1987 2 DM F 37 42
## 519 12419 3 2 1987 2 DM M 35 49
## 520 12439 3 2 1987 2 DM M 36 40
## 521 12533 4 6 1987 2 DM M 36 46
## 522 12535 4 6 1987 2 DM F 36 42
## 523 12545 4 6 1987 2 DM M 37 45
## 524 12676 4 26 1987 2 DM M 36 46
## 525 12764 5 28 1987 2 DM F 36 45
## 526 12780 5 28 1987 2 DM M 35 44
## 527 12966 7 1 1987 2 DM M 34 47
## 528 12972 7 1 1987 2 DM F 33 25
## 529 13112 7 26 1987 2 DM <NA> NA NA
## 530 13145 7 26 1987 2 DM F NA 40
## 531 13167 7 26 1987 2 DM F NA 32
## 532 13267 8 26 1987 2 DM F 37 44
## 533 13481 9 27 1987 2 DM M 36 48
## 534 13589 10 25 1987 2 DM M 37 45
## 535 13757 11 22 1987 2 DM M 37 44
## 536 13820 11 22 1987 2 DM M 37 45
## 537 13822 11 22 1987 2 DM M 35 38
## 538 13920 1 24 1988 2 DM M 36 38
## 539 13922 1 24 1988 2 DM F 37 41
## 540 13935 1 24 1988 2 DM M 34 47
## 541 14098 2 22 1988 2 DM F 36 40
## 542 14104 2 22 1988 2 DM M 36 45
## 543 14119 2 22 1988 2 DM M 36 38
## 544 14123 2 22 1988 2 DM F 36 42
## 545 14134 2 22 1988 2 DM M 37 48
## 546 14258 3 21 1988 2 DM M 36 43
## 547 14279 3 21 1988 2 DM F 37 42
## 548 14322 3 21 1988 2 DM M 38 48
## 549 14423 4 19 1988 2 DM F 37 44
## 550 14491 5 15 1988 2 DM F 37 48
## 551 14540 5 15 1988 2 DM M 36 48
## 552 14603 6 12 1988 2 DM F 38 41
## 553 14697 7 15 1988 2 DM F 37 42
## 554 14787 8 9 1988 2 DM M 37 41
## 555 14794 8 10 1988 2 DM M 35 24
## 556 14797 8 10 1988 2 DM F 32 40
## 557 14889 9 12 1988 2 DM M 37 35
## 558 14988 10 9 1988 2 DM M 37 43
## 559 16292 7 4 1989 2 DM M NA 46
## 560 16377 7 30 1989 2 DM F 37 51
## 561 17298 3 30 1990 2 DM F 37 46
## 562 17320 3 30 1990 2 DM M 37 50
## 563 17331 3 30 1990 2 DM M 37 43
## 564 17910 10 16 1990 2 DM M 36 38
## 565 17915 10 16 1990 2 DM F 37 45
## 566 17973 11 10 1990 2 DM F 37 47
## 567 18096 12 15 1990 2 DM F 36 44
## 568 18193 1 11 1991 2 DM F 34 48
## 569 18201 1 11 1991 2 DM M 37 51
## 570 18654 5 13 1991 2 DM F 37 54
## 571 18743 6 13 1991 2 DM F 35 44
## 572 18821 7 12 1991 2 DM F 36 45
## 573 19378 12 7 1991 2 DM M 36 48
## 574 19427 12 7 1991 2 DM F 36 41
## 575 19539 1 8 1992 2 DM M 36 42
## 576 19806 3 7 1992 2 DM M 36 47
## 577 19866 4 4 1992 2 DM M 37 49
## 578 20856 5 22 1993 2 DM F 36 55
## 579 21167 10 15 1993 2 DM M 35 34
## 580 21215 11 13 1993 2 DM M 36 39
## 581 21223 11 13 1993 2 DM M 36 49
## 582 21269 12 14 1993 2 DM M 35 48
## 583 21275 12 14 1993 2 DM M 35 36
## 584 21284 12 14 1993 2 DM M 36 46
## 585 21325 2 1 1994 2 DM M 37 39
## 586 21385 2 20 1994 2 DM M 37 40
## 587 21435 3 11 1994 2 DM M 36 40
## 588 21442 3 11 1994 2 DM M 34 45
## 589 21448 3 11 1994 2 DM M 36 47
## 590 21502 4 10 1994 2 DM M 39 41
## 591 21505 4 10 1994 2 DM M 35 52
## 592 21555 5 18 1994 2 DM M 36 44
## 593 21560 5 18 1994 2 DM M 36 51
## 594 21708 8 17 1994 2 DM M 36 44
## 595 21757 9 6 1994 2 DM M 38 46
## 596 21814 10 12 1994 2 DM M 38 43
## 597 21879 11 1 1994 2 DM M 36 44
## 598 21940 12 4 1994 2 DM M 36 44
## 599 22003 1 11 1995 2 DM M 37 41
## 600 22042 2 4 1995 2 DM F 36 45
## 601 22044 2 4 1995 2 DM M 37 46
## 602 22105 3 4 1995 2 DM F 37 49
## 603 22109 3 4 1995 2 DM M 37 46
## 604 22168 4 1 1995 2 DM M 36 48
## 605 22250 4 29 1995 2 DM F 36 48
## 606 22368 6 27 1995 2 DM M 37 44
## 607 22375 6 27 1995 2 DM F 35 27
## 608 22444 7 20 1995 2 DM F 31 37
## 609 22550 8 26 1995 2 DM F 37 26
## 610 22560 8 26 1995 2 DM F 34 41
## 611 22689 9 23 1995 2 DM F 33 43
## 612 22842 10 28 1995 2 DM F 35 50
## 613 22853 10 28 1995 2 DM F 34 44
## 614 22865 10 28 1995 2 DM M 33 31
## 615 22880 10 28 1995 2 DM M 36 44
## 616 22896 10 28 1995 2 DM M 34 31
## 617 22997 12 2 1995 2 DM M 36 50
## 618 23002 12 2 1995 2 DM M 35 40
## 619 23003 12 2 1995 2 DM F 35 43
## 620 23041 12 2 1995 2 DM M 36 47
## 621 23044 12 2 1995 2 DM M 37 43
## 622 23115 12 21 1995 2 DM F 37 51
## 623 23117 12 21 1995 2 DM M 35 23
## 624 23120 12 21 1995 2 DM M 35 42
## 625 23136 12 21 1995 2 DM M 33 27
## 626 23144 12 21 1995 2 DM F 36 42
## 627 23156 12 21 1995 2 DM M 37 47
## 628 23169 12 21 1995 2 DM F 36 44
## 629 23220 1 27 1996 2 DM F 36 47
## 630 23225 1 27 1996 2 DM M 40 54
## 631 23234 1 27 1996 2 DM F 35 45
## 632 23237 1 27 1996 2 DM M 35 46
## 633 23243 1 27 1996 2 DM M 36 49
## 634 23257 1 27 1996 2 DM M 36 50
## 635 23341 2 24 1996 2 DM F 38 55
## 636 23345 2 24 1996 2 DM M 37 45
## 637 23357 2 24 1996 2 DM F 35 44
## 638 23365 2 24 1996 2 DM F 34 49
## 639 23368 2 24 1996 2 DM M 40 55
## 640 23403 2 24 1996 2 DM M 35 47
## 641 23498 3 23 1996 2 DM F 36 41
## 642 23519 3 23 1996 2 DM F 36 48
## 643 23522 3 23 1996 2 DM F 37 49
## 644 23549 3 23 1996 2 DM M 38 44
## 645 23565 3 23 1996 2 DM M 37 48
## 646 23645 4 14 1996 2 DM F 37 47
## 647 23650 4 14 1996 2 DM F 34 26
## 648 23687 4 14 1996 2 DM M 40 56
## 649 23703 4 14 1996 2 DM F 36 49
## 650 23895 5 23 1996 2 DM M 35 41
## 651 23899 5 23 1996 2 DM M 38 53
## 652 23902 5 23 1996 2 DM F 37 55
## 653 23904 5 23 1996 2 DM F 36 49
## 654 23922 5 23 1996 2 DM M 40 54
## 655 23929 5 23 1996 2 DM F 35 47
## 656 23936 5 23 1996 2 DM M 37 47
## 657 24027 6 13 1996 2 DM M 40 53
## 658 24045 6 13 1996 2 DM F 36 41
## 659 24197 7 20 1996 2 DM F 30 46
## 660 24292 8 14 1996 2 DM F 35 47
## 661 24306 8 14 1996 2 DM M 36 40
## 662 24393 9 21 1996 2 DM F 33 26
## 663 24396 9 21 1996 2 DM M 35 28
## 664 24407 9 21 1996 2 DM F 35 42
## 665 24443 9 21 1996 2 DM M 36 42
## 666 24537 10 12 1996 2 DM M 38 45
## 667 24546 10 12 1996 2 DM M 38 50
## 668 24549 10 12 1996 2 DM M 34 36
## 669 24553 10 12 1996 2 DM F 35 48
## 670 24681 11 16 1996 2 DM M 35 42
## 671 24682 11 16 1996 2 DM M 36 41
## 672 24694 11 16 1996 2 DM M 38 42
## 673 24822 12 18 1996 2 DM M 35 45
## 674 24844 12 18 1996 2 DM M 37 47
## 675 24939 2 8 1997 2 DM M 34 44
## 676 24947 2 8 1997 2 DM M 36 50
## 677 25014 2 8 1997 2 DM M 37 49
## 678 25164 3 15 1997 2 DM M 34 51
## 679 25175 3 15 1997 2 DM M 35 52
## 680 25181 3 15 1997 2 DM M 35 46
## 681 25183 3 15 1997 2 DM F 37 48
## 682 25193 3 15 1997 2 DM M 35 48
## 683 25197 3 15 1997 2 DM F 37 53
## 684 25211 3 15 1997 2 DM M 38 48
## 685 25214 3 15 1997 2 DM M 38 53
## 686 25217 3 15 1997 2 DM M 35 50
## 687 25422 4 12 1997 2 DM M 36 43
## 688 25446 4 12 1997 2 DM F 35 43
## 689 25720 5 10 1997 2 DM M 38 49
## 690 25944 6 9 1997 2 DM M 36 46
## 691 26259 7 9 1997 2 DM M 36 44
## 692 26567 7 29 1997 2 DM M 37 47
## 693 26773 9 27 1997 2 DM M 36 49
## 694 27005 10 25 1997 2 DM M 36 47
## 695 27212 11 22 1997 2 DM M 36 43
## 696 27240 11 22 1997 2 DM F 36 44
## 697 27293 12 28 1997 2 DM M 37 45
## 698 27444 1 31 1998 2 DM F 36 41
## 699 27458 1 31 1998 2 DM M 35 46
## 700 27559 3 1 1998 2 DM M 35 NA
## 701 27567 3 1 1998 2 DM F 36 NA
## 702 27686 3 29 1998 2 DM M 35 43
## 703 27701 3 29 1998 2 DM M 34 45
## 704 27702 3 29 1998 2 DM M 35 48
## 705 27704 3 29 1998 2 DM M 37 44
## 706 27715 3 29 1998 2 DM M 37 43
## 707 27747 5 2 1998 2 DM M 35 45
## 708 27753 5 2 1998 2 DM F 37 58
## 709 27776 5 2 1998 2 DM M 35 46
## 710 27778 5 2 1998 2 DM M 36 53
## 711 27862 5 28 1998 2 DM M 37 51
## 712 27884 5 28 1998 2 DM M 35 21
## 713 27896 5 28 1998 2 DM F 37 45
## 714 27909 5 28 1998 2 DM M 37 52
## 715 28019 6 27 1998 2 DM M 37 33
## 716 28065 6 27 1998 2 DM M 37 32
## 717 28067 6 27 1998 2 DM M 35 44
## 718 28177 7 18 1998 2 DM M 37 40
## 719 28184 7 18 1998 2 DM F 36 48
## 720 28323 8 22 1998 2 DM M 36 45
## 721 28550 9 20 1998 2 DM M 37 47
## 722 28554 9 20 1998 2 DM M 35 36
## 723 28561 9 20 1998 2 DM M 35 28
## 724 28660 10 24 1998 2 DM M 39 37
## 725 28663 10 24 1998 2 DM M 37 44
## 726 28798 11 21 1998 2 DM M 36 46
## 727 28799 11 21 1998 2 DM F 35 34
## 728 28921 12 22 1998 2 DM M 36 47
## 729 28926 12 22 1998 2 DM F 34 36
## 730 29036 1 16 1999 2 DM M 36 44
## 731 29037 1 16 1999 2 DM M 37 47
## 732 29168 2 20 1999 2 DM M 37 50
## 733 29308 3 14 1999 2 DM M 36 51
## 734 29311 3 14 1999 2 DM M 36 27
## 735 29431 4 17 1999 2 DM M 37 48
## 736 29434 4 17 1999 2 DM F 36 31
## 737 29577 5 15 1999 2 DM M 37 46
## 738 29704 6 12 1999 2 DM F 34 42
## 739 31215 8 25 2000 2 DM F 36 43
## 740 31386 9 30 2000 2 DM F 35 45
## 741 31515 11 25 2000 2 DM F 35 43
## 742 31632 12 22 2000 2 DM F 34 44
## 743 31718 1 21 2001 2 DM F 34 44
## 744 31792 3 3 2001 2 DM F 35 45
## 745 31858 3 24 2001 2 DM M 37 53
## 746 31859 3 24 2001 2 DM F 36 60
## 747 31860 3 24 2001 2 DM M 37 47
## 748 31861 3 24 2001 2 DM M 37 48
## 749 31945 4 21 2001 2 DM F 35 47
## 750 31948 4 21 2001 2 DM M 37 52
## 751 32380 8 25 2001 2 DM F 36 49
## 752 32386 8 25 2001 2 DM M 36 46
## 753 32601 9 22 2001 2 DM M 34 24
## 754 32604 9 22 2001 2 DM M 36 47
## 755 32605 9 22 2001 2 DM F 36 43
## 756 32607 9 22 2001 2 DM M 37 50
## 757 32822 10 13 2001 2 DM F 36 NA
## 758 32827 10 13 2001 2 DM F 36 47
## 759 32828 10 13 2001 2 DM M 36 46
## 760 33027 11 17 2001 2 DM M 36 48
## 761 33035 11 17 2001 2 DM F 35 47
## 762 33232 12 15 2001 2 DM F 36 45
## 763 33234 12 15 2001 2 DM M 37 48
## 764 33329 1 12 2002 2 DM M 37 47
## 765 33336 1 12 2002 2 DM F 35 45
## 766 33410 2 9 2002 2 DM F 35 46
## 767 33579 3 13 2002 2 DM F 36 43
## 768 33580 3 13 2002 2 DM M 36 55
## 769 33581 3 13 2002 2 DM M 36 50
## 770 33842 4 17 2002 2 DM F 35 51
## 771 33844 4 17 2002 2 DM F 34 30
## 772 33958 5 15 2002 2 DM F 36 41
## 773 34192 6 15 2002 2 DM F 35 50
## 774 34428 7 13 2002 2 DM F 34 46
## 775 34672 9 8 2002 2 DM F 37 45
## 776 34985 11 9 2002 2 DM M 35 55
## 777 34987 11 9 2002 2 DM M 35 45
## 778 35210 12 7 2002 2 DM M 35 48
## 779 35397 12 29 2002 2 DM F 34 34
## 780 69 8 19 1977 2 PF M 15 8
## 781 432 12 10 1977 2 PF <NA> NA NA
## 782 532 1 8 1978 2 PF F NA 7
## 783 590 2 18 1978 2 PF F 16 7
## 784 650 3 11 1978 2 PF F 15 7
## 785 652 3 11 1978 2 PF M 14 8
## 786 833 5 6 1978 2 PF M 14 8
## 787 995 6 9 1978 2 PF M 16 8
## 788 1351 10 8 1978 2 PF M 15 6
## 789 2051 9 23 1979 2 PF F 16 7
## 790 2167 11 17 1979 2 PF F 14 7
## 791 2536 3 9 1980 2 PF F NA 7
## 792 2883 4 18 1980 2 PF M NA 8
## 793 2900 4 18 1980 2 PF M NA 6
## 794 4283 4 6 1981 2 PF M NA 5
## 795 6457 8 16 1982 2 PF F 15 5
## 796 6518 9 18 1982 2 PF F 17 6
## 797 7040 11 22 1982 2 PF M 15 7
## 798 7784 4 17 1983 2 PF M 16 7
## 799 21031 8 19 1993 2 PF <NA> NA NA
## 800 23912 5 23 1996 2 PF M 17 8
## 801 7 7 16 1977 2 PE F NA NA
## 802 238 9 13 1977 2 PE M 20 19
## 803 279 10 16 1977 2 PE F 19 NA
## 804 517 1 8 1978 2 PE M 26 22
## 805 604 2 18 1978 2 PE M 22 25
## 806 671 3 11 1978 2 PE M 20 28
## 807 673 3 11 1978 2 PE F NA 29
## 808 1283 9 4 1978 2 PE F 20 20
## 809 1301 9 4 1978 2 PE M 20 17
## 810 1467 11 5 1978 2 PE M 20 22
## 811 1603 1 29 1979 2 PE M NA 26
## 812 2457 2 25 1980 2 PE M 21 23
## 813 2530 2 25 1980 2 PE F 21 21
## 814 5071 11 23 1981 2 PE M 19 19
## 815 5074 11 23 1981 2 PE M 21 19
## 816 5076 11 23 1981 2 PE F 21 19
## 817 5178 1 1 1982 2 PE F 20 25
## 818 5184 1 1 1982 2 PE F 19 21
## 819 5192 1 1 1982 2 PE M 18 24
## 820 5196 1 1 1982 2 PE M 19 25
## 821 5301 1 25 1982 2 PE M 20 23
## 822 5321 1 25 1982 2 PE <NA> NA NA
## 823 5322 1 25 1982 2 PE M 20 22
## 824 5484 2 24 1982 2 PE F 21 17
## 825 5487 2 24 1982 2 PE M 19 23
## 826 5490 2 24 1982 2 PE F 19 20
## 827 5493 2 24 1982 2 PE M 20 23
## 828 5544 3 29 1982 2 PE F 19 23
## 829 5562 3 29 1982 2 PE M 20 23
## 830 6215 7 25 1982 2 PE M NA 24
## 831 6496 8 16 1982 2 PE M 20 20
## 832 7087 11 22 1982 2 PE M 20 23
## 833 7311 1 13 1983 2 PE M 20 21
## 834 7417 2 27 1983 2 PE M 19 22
## 835 7440 2 27 1983 2 PE F 19 23
## 836 7578 3 15 1983 2 PE M 21 26
## 837 7742 4 17 1983 2 PE F 21 19
## 838 9561 9 29 1984 2 PE M NA NA
## 839 9777 12 31 1984 2 PE M 19 20
## 840 9780 12 31 1984 2 PE F 20 20
## 841 9999 2 17 1985 2 PE M 18 16
## 842 10018 2 17 1985 2 PE F 20 18
## 843 11083 11 17 1985 2 PE M 21 20
## 844 11084 11 17 1985 2 PE F 19 22
## 845 11207 12 8 1985 2 PE M 18 19
## 846 11315 3 9 1986 2 PE M 19 19
## 847 11948 10 5 1986 2 PE F 21 22
## 848 12280 2 1 1987 2 PE M 20 23
## 849 12288 2 1 1987 2 PE F 21 22
## 850 12459 3 2 1987 2 PE F 22 27
## 851 12589 4 6 1987 2 PE M 19 22
## 852 12731 4 26 1987 2 PE M 21 21
## 853 13010 7 1 1987 2 PE F 21 21
## 854 13103 7 26 1987 2 PE F NA 24
## 855 13148 7 26 1987 2 PE M NA 17
## 856 13309 8 26 1987 2 PE M 14 19
## 857 13332 8 26 1987 2 PE F 20 27
## 858 13463 9 27 1987 2 PE M 20 20
## 859 13611 10 25 1987 2 PE M 20 20
## 860 13780 11 22 1987 2 PE M 21 22
## 861 13787 11 22 1987 2 PE M 20 19
## 862 13791 11 22 1987 2 PE M 19 20
## 863 13831 11 22 1987 2 PE F 21 27
## 864 13960 1 24 1988 2 PE M 21 22
## 865 13963 1 24 1988 2 PE M 19 22
## 866 13986 1 24 1988 2 PE F 21 25
## 867 13992 1 24 1988 2 PE M 22 24
## 868 14183 2 22 1988 2 PE F 21 22
## 869 14301 3 21 1988 2 PE F 20 29
## 870 14428 4 19 1988 2 PE M 20 26
## 871 14430 4 19 1988 2 PE F 21 29
## 872 14516 5 15 1988 2 PE F 22 25
## 873 14624 6 12 1988 2 PE M 20 14
## 874 14630 6 12 1988 2 PE M 20 18
## 875 14820 8 10 1988 2 PE M 21 20
## 876 14822 8 10 1988 2 PE F 21 29
## 877 14841 8 10 1988 2 PE M 21 17
## 878 15106 11 6 1988 2 PE M 20 21
## 879 15130 11 6 1988 2 PE F 21 19
## 880 15132 11 6 1988 2 PE M 21 21
## 881 15136 11 6 1988 2 PE F 21 24
## 882 15267 12 14 1988 2 PE M 21 21
## 883 15431 1 11 1989 2 PE M 21 22
## 884 15750 3 13 1989 2 PE M 21 25
## 885 15772 3 13 1989 2 PE F 21 25
## 886 15853 4 1 1989 2 PE M 21 21
## 887 16498 10 7 1989 2 PE M 21 21
## 888 16693 11 5 1989 2 PE M 22 23
## 889 16709 11 5 1989 2 PE F 21 25
## 890 16816 12 5 1989 2 PE F 21 20
## 891 16847 12 5 1989 2 PE F 22 25
## 892 16955 1 7 1990 2 PE F 21 22
## 893 17085 1 30 1990 2 PE F 22 20
## 894 19041 9 9 1991 2 PE M 22 16
## 895 19394 12 7 1991 2 PE F 20 20
## 896 19426 12 7 1991 2 PE M 21 23
## 897 19429 12 7 1991 2 PE F 19 20
## 898 19562 1 8 1992 2 PE M 19 22
## 899 19580 1 8 1992 2 PE F 20 19
## 900 19657 2 6 1992 2 PE M 20 22
## 901 19661 2 6 1992 2 PE F 20 19
## 902 19671 2 6 1992 2 PE M 20 21
## 903 19673 2 6 1992 2 PE F 20 18
## 904 19800 3 7 1992 2 PE M 19 23
## 905 19818 3 7 1992 2 PE F 19 19
## 906 19895 4 4 1992 2 PE F 21 21
## 907 20354 9 26 1992 2 PE M 20 26
## 908 20607 1 24 1993 2 PE M 20 23
## 909 23258 1 27 1996 2 PE M 20 25
## 910 23260 1 27 1996 2 PE F 20 25
## 911 23379 2 24 1996 2 PE F 20 17
## 912 23393 2 24 1996 2 PE M 22 24
## 913 23396 2 24 1996 2 PE F 20 24
## 914 23399 2 24 1996 2 PE F 20 19
## 915 23504 3 23 1996 2 PE M 20 21
## 916 23547 3 23 1996 2 PE F 20 18
## 917 23583 3 23 1996 2 PE F 19 25
## 918 23598 3 23 1996 2 PE M 20 25
## 919 23658 4 14 1996 2 PE M 21 20
## 920 23716 4 14 1996 2 PE F 19 25
## 921 23729 4 14 1996 2 PE F 20 22
## 922 23944 5 23 1996 2 PE F 20 24
## 923 23945 5 23 1996 2 PE M 21 21
## 924 24711 11 16 1996 2 PE M 22 24
## 925 24714 11 16 1996 2 PE F 20 25
## 926 24992 2 8 1997 2 PE M 20 22
## 927 25277 3 15 1997 2 PE M 21 24
## 928 25280 3 15 1997 2 PE M 20 24
## 929 25494 4 12 1997 2 PE F 20 23
## 930 26022 6 9 1997 2 PE M 21 24
## 931 27214 11 22 1997 2 PE M 20 21
## 932 29035 1 16 1999 2 PE M 20 18
## 933 31520 11 25 2000 2 PE M 20 23
## 934 32815 10 13 2001 2 PE M 20 31
## 935 33032 11 17 2001 2 PE F 20 21
## 936 33036 11 17 2001 2 PE M 19 22
## 937 33228 12 15 2001 2 PE F 20 20
## 938 33231 12 15 2001 2 PE M 20 22
## 939 33331 1 12 2002 2 PE F 21 23
## 940 33411 2 9 2002 2 PE M 19 25
## 941 33953 5 15 2002 2 PE F 20 16
## 942 33963 5 15 2002 2 PE M 20 21
## 943 34194 6 15 2002 2 PE F 21 25
## 944 34426 7 13 2002 2 PE F 21 22
## 945 35201 12 7 2002 2 PE F 21 28
## 946 35209 12 7 2002 2 PE M 20 21
## 947 220 9 13 1977 2 DS M 52 NA
## 948 247 10 16 1977 2 DS M 54 NA
## 949 585 2 18 1978 2 DS M 53 157
## 950 657 3 11 1978 2 DS M 54 153
## 951 731 4 8 1978 2 DS F 47 110
## 952 749 4 8 1978 2 DS M NA NA
## 953 835 5 6 1978 2 DS M 53 149
## 954 912 5 19 1978 2 DS M NA 148
## 955 934 5 19 1978 2 DS F 47 114
## 956 993 6 9 1978 2 DS M 54 149
## 957 1151 8 5 1978 2 DS M 52 165
## 958 1266 9 4 1978 2 DS M 53 158
## 959 1365 10 8 1978 2 DS M 53 149
## 960 1673 3 31 1979 2 DS F 48 82
## 961 1922 7 25 1979 2 DS F 50 80
## 962 3008 5 24 1980 2 DS F 50 153
## 963 3009 5 24 1980 2 DS F 52 105
## 964 3010 5 24 1980 2 DS M 52 149
## 965 3034 6 2 1980 2 DS M 50 102
## 966 3083 6 23 1980 2 DS F 51 90
## 967 3380 10 12 1980 2 DS F 53 137
## 968 3457 11 9 1980 2 DS M 51 146
## 969 3505 11 9 1980 2 DS F 50 131
## 970 3546 12 15 1980 2 DS F 51 147
## 971 3778 1 12 1981 2 DS F 51 150
## 972 3869 2 1 1981 2 DS F 51 136
## 973 3875 2 1 1981 2 DS M 48 130
## 974 3958 3 9 1981 2 DS M 55 148
## 975 3973 3 9 1981 2 DS F 53 159
## 976 3976 3 9 1981 2 DS M 51 89
## 977 3977 3 9 1981 2 DS M 48 75
## 978 3980 3 9 1981 2 DS M 48 77
## 979 4190 4 6 1981 2 DS F NA 131
## 980 4203 4 6 1981 2 DS M NA 147
## 981 4216 4 6 1981 2 DS M NA 86
## 982 4221 4 6 1981 2 DS M NA 95
## 983 4225 4 6 1981 2 DS M NA 145
## 984 4230 4 6 1981 2 DS F NA 130
## 985 4233 4 6 1981 2 DS M NA 81
## 986 4248 4 6 1981 2 DS M NA 137
## 987 4299 4 6 1981 2 DS <NA> NA 140
## 988 4334 4 6 1981 2 DS M NA 125
## 989 4447 5 4 1981 2 DS M 51 74
## 990 4449 5 4 1981 2 DS F 57 136
## 991 4514 6 4 1981 2 DS F 55 140
## 992 4517 6 4 1981 2 DS M 52 78
## 993 4648 7 8 1981 2 DS F 53 144
## 994 4858 10 1 1981 2 DS F 52 151
## 995 4948 10 26 1981 2 DS F 54 172
## 996 5013 11 23 1981 2 DS M 49 144
## 997 5027 11 23 1981 2 DS F 51 142
## 998 5164 1 1 1982 2 DS F 49 78
## 999 5173 1 1 1982 2 DS M 50 83
## 1000 5270 1 25 1982 2 DS F 48 89
## 1001 5282 1 25 1982 2 DS M 52 82
## 1002 5467 2 24 1982 2 DS F 49 93
## 1003 5471 2 24 1982 2 DS M 51 102
## 1004 5472 2 24 1982 2 DS F 52 160
## 1005 5474 2 24 1982 2 DS M 48 54
## 1006 5514 3 29 1982 2 DS F 51 142
## 1007 5523 3 29 1982 2 DS M 49 94
## 1008 5532 3 29 1982 2 DS M 52 151
## 1009 5767 4 29 1982 2 DS F 52 149
## 1010 5775 4 29 1982 2 DS M 49 74
## 1011 5777 4 29 1982 2 DS F 49 78
## 1012 5921 5 22 1982 2 DS M 52 98
## 1013 5934 5 22 1982 2 DS F 52 138
## 1014 6176 7 25 1982 2 DS M NA 84
## 1015 6435 8 16 1982 2 DS M 52 94
## 1016 6532 9 18 1982 2 DS M 51 110
## 1017 6788 10 24 1982 2 DS F 50 150
## 1018 6827 10 24 1982 2 DS <NA> NA 129
## 1019 6836 10 24 1982 2 DS M 51 133
## 1020 6865 10 24 1982 2 DS F 49 127
## 1021 6868 10 24 1982 2 DS M 52 130
## 1022 6891 10 24 1982 2 DS M 52 146
## 1023 6916 10 24 1982 2 DS F 49 115
## 1024 7046 11 22 1982 2 DS M 52 136
## 1025 7260 1 13 1983 2 DS M 51 148
## 1026 7378 2 27 1983 2 DS M 52 141
## 1027 7564 3 15 1983 2 DS M 50 91
## 1028 7600 3 15 1983 2 DS M 52 144
## 1029 7730 4 17 1983 2 DS M 50 91
## 1030 7891 5 15 1983 2 DS M 54 139
## 1031 8001 6 18 1983 2 DS M 53 136
## 1032 8224 8 16 1983 2 DS M 52 152
## 1033 8241 8 16 1983 2 DS M 50 130
## 1034 8347 9 11 1983 2 DS M 53 145
## 1035 8355 9 11 1983 2 DS F 53 149
## 1036 8373 9 11 1983 2 DS M 50 128
## 1037 8479 10 16 1983 2 DS F 53 144
## 1038 8499 10 16 1983 2 DS M 52 151
## 1039 8511 10 16 1983 2 DS M 51 126
## 1040 8515 10 16 1983 2 DS F 48 137
## 1041 8627 11 13 1983 2 DS F 52 132
## 1042 8654 11 13 1983 2 DS M 52 124
## 1043 8883 2 5 1984 2 DS F 52 120
## 1044 9892 1 20 1985 2 DS F 48 106
## 1045 10294 4 21 1985 2 DS M 49 139
## 1046 10441 5 24 1985 2 DS F 47 111
## 1047 10503 6 16 1985 2 DS F 50 84
## 1048 10604 7 24 1985 2 DS F 48 106
## 1049 11858 9 7 1986 2 DS M 52 128
## 1050 11923 10 5 1986 2 DS M 53 134
## 1051 12020 11 16 1986 2 DS M 52 133
## 1052 12123 12 15 1986 2 DS M 51 143
## 1053 12251 2 1 1987 2 DS M 51 136
## 1054 12404 3 2 1987 2 DS M 50 131
## 1055 12557 4 6 1987 2 DS M 53 137
## 1056 12688 4 26 1987 2 DS M 52 134
## 1057 12790 5 28 1987 2 DS M 49 139
## 1058 12981 7 1 1987 2 DS M 52 130
## 1059 13123 7 26 1987 2 DS M NA 130
## 1060 13420 9 27 1987 2 DS M 49 132
## 1061 13587 10 25 1987 2 DS M 50 128
## 1062 14409 4 19 1988 2 DS M 51 128
## 1063 26304 7 9 1997 2 DS F 50 113
## 1064 26571 7 29 1997 2 DS F 49 118
## 1065 26792 9 27 1997 2 DS F 49 113
## 1066 26980 10 25 1997 2 DS F 50 108
## 1067 27163 11 22 1997 2 DS F 50 103
## 1068 27306 12 28 1997 2 DS F 51 111
## 1069 27426 1 31 1998 2 DS F 51 122
## 1070 27553 3 1 1998 2 DS M 50 NA
## 1071 28013 6 27 1998 2 DS F 51 106
## 1072 28166 7 18 1998 2 DS F 51 113
## 1073 28552 9 20 1998 2 DS F 51 120
## 1074 28658 10 24 1998 2 DS M 51 120
## 1075 28800 11 21 1998 2 DS F 51 112
## 1076 28927 12 22 1998 2 DS F 53 119
## 1077 29038 1 16 1999 2 DS F 51 136
## 1078 29167 2 20 1999 2 DS F 50 140
## 1079 29313 3 14 1999 2 DS F 52 153
## 1080 29433 4 17 1999 2 DS M 48 87
## 1081 29436 4 17 1999 2 DS F 51 131
## 1082 29573 5 15 1999 2 DS M 50 96
## 1083 29706 6 12 1999 2 DS M 49 102
## 1084 18 7 16 1977 2 PP M 22 NA
## 1085 933 5 19 1978 2 PP F 20 13
## 1086 1294 9 4 1978 2 PP M 21 19
## 1087 1898 7 4 1979 2 PP M 20 10
## 1088 6148 7 25 1982 2 PP F NA 19
## 1089 8405 9 11 1983 2 PP F 22 18
## 1090 13472 9 27 1987 2 PP M 21 16
## 1091 13475 9 27 1987 2 PP F 23 18
## 1092 13576 10 25 1987 2 PP F 24 19
## 1093 16400 7 30 1989 2 PP M 24 17
## 1094 16729 11 5 1989 2 PP M 22 15
## 1095 17870 9 25 1990 2 PP M NA 18
## 1096 18646 4 21 1991 2 PP M 20 15
## 1097 18848 7 12 1991 2 PP F 23 15
## 1098 18920 8 7 1991 2 PP F 22 14
## 1099 19038 9 9 1991 2 PP F 23 15
## 1100 19102 10 10 1991 2 PP F 21 16
## 1101 19947 5 2 1992 2 PP F 22 16
## 1102 19950 5 2 1992 2 PP M 21 19
## 1103 19965 5 2 1992 2 PP <NA> NA NA
## 1104 20041 5 30 1992 2 PP F 22 20
## 1105 20243 8 29 1992 2 PP M 20 19
## 1106 21510 4 10 1994 2 PP M 22 18
## 1107 21723 8 17 1994 2 PP M NA NA
## 1108 21726 8 17 1994 2 PP F 21 15
## 1109 21764 9 6 1994 2 PP F 21 15
## 1110 21810 10 12 1994 2 PP F 21 14
## 1111 22381 6 27 1995 2 PP M 22 21
## 1112 22440 7 20 1995 2 PP F 19 15
## 1113 22441 7 20 1995 2 PP F 19 17
## 1114 22446 7 20 1995 2 PP M 21 19
## 1115 22449 7 20 1995 2 PP F 19 9
## 1116 22464 7 20 1995 2 PP F 20 15
## 1117 22542 8 26 1995 2 PP F 23 18
## 1118 22546 8 26 1995 2 PP F 21 14
## 1119 22557 8 26 1995 2 PP M 23 19
## 1120 22663 9 23 1995 2 PP F 19 11
## 1121 22669 9 23 1995 2 PP F 20 17
## 1122 22672 9 23 1995 2 PP F 18 13
## 1123 22673 9 23 1995 2 PP F 21 16
## 1124 22682 9 23 1995 2 PP F 21 16
## 1125 22691 9 23 1995 2 PP M 22 20
## 1126 22692 9 23 1995 2 PP F 21 14
## 1127 22696 9 23 1995 2 PP F 20 17
## 1128 22727 9 23 1995 2 PP F 21 16
## 1129 22831 10 28 1995 2 PP F 22 14
## 1130 22836 10 28 1995 2 PP F 21 16
## 1131 22851 10 28 1995 2 PP F 22 14
## 1132 22878 10 28 1995 2 PP F 19 13
## 1133 22886 10 28 1995 2 PP F 21 13
## 1134 22910 10 28 1995 2 PP F 24 17
## 1135 23028 12 2 1995 2 PP F 22 14
## 1136 23353 2 24 1996 2 PP F 22 17
## 1137 23501 3 23 1996 2 PP F 23 18
## 1138 23594 3 23 1996 2 PP M NA 24
## 1139 23676 4 14 1996 2 PP F 23 20
## 1140 23892 5 23 1996 2 PP F 24 21
## 1141 23913 5 23 1996 2 PP F 21 13
## 1142 24039 6 13 1996 2 PP F 23 21
## 1143 24048 6 13 1996 2 PP F 22 17
## 1144 24172 7 20 1996 2 PP M 22 17
## 1145 24185 7 20 1996 2 PP F 22 17
## 1146 24217 7 20 1996 2 PP M 23 12
## 1147 24307 8 14 1996 2 PP F 22 19
## 1148 24318 8 14 1996 2 PP M 23 15
## 1149 24418 9 21 1996 2 PP F 20 20
## 1150 24435 9 21 1996 2 PP F 23 21
## 1151 25430 4 12 1997 2 PP F 23 22
## 1152 25453 4 12 1997 2 PP F 23 21
## 1153 25474 4 12 1997 2 PP M 23 22
## 1154 25477 4 12 1997 2 PP M 22 22
## 1155 25480 4 12 1997 2 PP F 21 22
## 1156 25522 4 12 1997 2 PP M 22 20
## 1157 25529 4 12 1997 2 PP M 23 25
## 1158 25695 5 10 1997 2 PP M 22 20
## 1159 25727 5 10 1997 2 PP F 21 22
## 1160 25753 5 10 1997 2 PP M 21 18
## 1161 25779 5 10 1997 2 PP F 21 18
## 1162 25977 6 9 1997 2 PP M 23 22
## 1163 25991 6 9 1997 2 PP F 21 19
## 1164 25994 6 9 1997 2 PP M 22 14
## 1165 26446 7 9 1997 2 PP <NA> NA NA
## 1166 26476 7 9 1997 2 PP M 23 16
## 1167 26576 7 29 1997 2 PP F 23 18
## 1168 26586 7 29 1997 2 PP M 23 19
## 1169 26627 7 29 1997 2 PP M 23 20
## 1170 26789 9 27 1997 2 PP F 21 16
## 1171 27690 3 29 1998 2 PP M 21 18
## 1172 27725 3 29 1998 2 PP M 20 20
## 1173 27763 5 2 1998 2 PP F 22 18
## 1174 27768 5 2 1998 2 PP M 21 19
## 1175 27875 5 28 1998 2 PP M 22 21
## 1176 27894 5 28 1998 2 PP M 21 21
## 1177 28030 6 27 1998 2 PP F 23 20
## 1178 28054 6 27 1998 2 PP M 22 15
## 1179 28069 6 27 1998 2 PP M 22 13
## 1180 28193 7 18 1998 2 PP <NA> NA NA
## 1181 28228 7 18 1998 2 PP M 23 16
## 1182 28324 8 22 1998 2 PP F 24 18
## 1183 28327 8 22 1998 2 PP M 22 16
## 1184 28329 8 22 1998 2 PP M 21 11
## 1185 28553 9 20 1998 2 PP M 20 12
## 1186 28559 9 20 1998 2 PP M 22 16
## 1187 28562 9 20 1998 2 PP M 21 12
## 1188 29437 4 17 1999 2 PP M 23 22
## 1189 29574 5 15 1999 2 PP M 22 14
## 1190 29576 5 15 1999 2 PP M 22 29
## 1191 29702 6 12 1999 2 PP M 21 19
## 1192 29822 9 11 1999 2 PP F 22 18
## 1193 29862 10 9 1999 2 PP M 22 19
## 1194 29863 10 9 1999 2 PP F 22 17
## 1195 29947 11 6 1999 2 PP M 21 15
## 1196 29948 11 6 1999 2 PP F 22 12
## 1197 29949 11 6 1999 2 PP F 22 13
## 1198 30064 12 5 1999 2 PP M 21 18
## 1199 30069 12 5 1999 2 PP F 23 22
## 1200 30170 1 8 2000 2 PP M 21 17
## 1201 30301 2 5 2000 2 PP M 22 18
## 1202 30302 2 5 2000 2 PP F 22 17
## 1203 30304 2 5 2000 2 PP M 22 18
## 1204 30306 2 5 2000 2 PP M 22 17
## 1205 30431 3 4 2000 2 PP M 22 21
## 1206 30432 3 4 2000 2 PP F 23 17
## 1207 30434 3 4 2000 2 PP M 22 22
## 1208 30439 3 4 2000 2 PP M 22 19
## 1209 30608 4 30 2000 2 PP M 22 22
## 1210 30609 4 30 2000 2 PP M 21 19
## 1211 30733 6 3 2000 2 PP M 27 10
## 1212 30740 6 3 2000 2 PP M 22 14
## 1213 30913 7 1 2000 2 PP F 21 16
## 1214 30915 7 1 2000 2 PP M 22 18
## 1215 31106 7 22 2000 2 PP M 23 17
## 1216 31107 7 22 2000 2 PP M 22 14
## 1217 31108 7 22 2000 2 PP M 23 15
## 1218 31204 8 25 2000 2 PP F 21 14
## 1219 31207 8 25 2000 2 PP M 23 17
## 1220 31208 8 25 2000 2 PP M 22 15
## 1221 31209 8 25 2000 2 PP F 22 15
## 1222 31211 8 25 2000 2 PP M 23 19
## 1223 31214 8 25 2000 2 PP M 23 17
## 1224 31387 9 30 2000 2 PP M 22 15
## 1225 31389 9 30 2000 2 PP M 22 17
## 1226 31944 4 21 2001 2 PP F 22 21
## 1227 31947 4 21 2001 2 PP M 22 24
## 1228 32162 6 25 2001 2 PP M 22 22
## 1229 32163 6 25 2001 2 PP M 23 16
## 1230 32164 6 25 2001 2 PP M 22 17
## 1231 32378 8 25 2001 2 PP M 23 19
## 1232 32379 8 25 2001 2 PP F 22 17
## 1233 32381 8 25 2001 2 PP M 22 NA
## 1234 32387 8 25 2001 2 PP M 22 18
## 1235 32388 8 25 2001 2 PP M 23 NA
## 1236 32599 9 22 2001 2 PP M 22 20
## 1237 32606 9 22 2001 2 PP M 24 19
## 1238 32608 9 22 2001 2 PP M 22 18
## 1239 32609 9 22 2001 2 PP M 23 17
## 1240 32819 10 13 2001 2 PP M 23 19
## 1241 32824 10 13 2001 2 PP M 23 19
## 1242 32830 10 13 2001 2 PP M 21 16
## 1243 33034 11 17 2001 2 PP M 21 16
## 1244 33226 12 15 2001 2 PP M 21 17
## 1245 33412 2 9 2002 2 PP M 22 17
## 1246 33578 3 13 2002 2 PP M 22 20
## 1247 33584 3 13 2002 2 PP M 23 23
## 1248 33843 4 17 2002 2 PP F 22 14
## 1249 33845 4 17 2002 2 PP M 23 22
## 1250 33846 4 17 2002 2 PP F 21 17
## 1251 33957 5 15 2002 2 PP M 23 22
## 1252 33959 5 15 2002 2 PP F 22 20
## 1253 33965 5 15 2002 2 PP F 22 18
## 1254 34193 6 15 2002 2 PP F 20 9
## 1255 34197 6 15 2002 2 PP M 23 22
## 1256 34423 7 13 2002 2 PP M 23 22
## 1257 34425 7 13 2002 2 PP F 20 12
## 1258 34430 7 13 2002 2 PP F 19 13
## 1259 34432 7 13 2002 2 PP F 21 18
## 1260 34433 7 13 2002 2 PP F 20 13
## 1261 34434 7 13 2002 2 PP M 22 15
## 1262 34673 9 8 2002 2 PP <NA> NA NA
## 1263 34773 10 5 2002 2 PP F 22 16
## 1264 34774 10 5 2002 2 PP F 20 18
## 1265 34781 10 5 2002 2 PP F 22 NA
## 1266 34984 11 9 2002 2 PP M 22 14
## 1267 34988 11 9 2002 2 PP F 23 15
## 1268 35202 12 7 2002 2 PP M 21 14
## 1269 35401 12 29 2002 2 PP M 21 14
## 1270 35408 12 29 2002 2 PP M 21 13
## 1271 16298 7 4 1989 2 SH M NA 82
## 1272 16513 10 7 1989 2 SH F 32 140
## 1273 16699 11 5 1989 2 SH M 27 42
## 1274 17327 3 30 1990 2 SH M 30 69
## 1275 26608 7 29 1997 2 SH F 30 80
## 1276 26640 7 29 1997 2 SH F 26 43
## 1277 30738 6 3 2000 2 SH M 28 48
## 1278 31111 7 22 2000 2 SH <NA> NA 130
## 1279 32044 5 26 2001 2 SH M 30 79
## 1280 32165 6 25 2001 2 SH M NA 92
## 1281 32816 10 13 2001 2 SH F 28 101
## 1282 33029 11 17 2001 2 SH M 28 65
## 1283 33413 2 9 2002 2 SH F 30 57
## 1284 33839 4 17 2002 2 SH M 30 79
## 1285 34990 11 9 2002 2 SH M 31 NA
## 1286 355 11 12 1977 2 OT <NA> NA NA
## 1287 431 12 10 1977 2 OT <NA> NA NA
## 1288 446 12 10 1977 2 OT <NA> NA NA
## 1289 452 12 10 1977 2 OT <NA> NA NA
## 1290 534 1 8 1978 2 OT <NA> NA NA
## 1291 598 2 18 1978 2 OT F NA 24
## 1292 603 2 18 1978 2 OT M NA 25
## 1293 663 3 11 1978 2 OT M 18 25
## 1294 670 3 11 1978 2 OT F 20 25
## 1295 732 4 8 1978 2 OT <NA> 19 NA
## 1296 918 5 19 1978 2 OT F 21 30
## 1297 1472 11 5 1978 2 OT F 20 23
## 1298 1541 12 3 1978 2 OT M 21 NA
## 1299 1584 1 29 1979 2 OT M NA 30
## 1300 1594 1 29 1979 2 OT M NA 26
## 1301 1924 7 25 1979 2 OT F 19 25
## 1302 2003 8 23 1979 2 OT F 21 27
## 1303 2011 8 23 1979 2 OT M 21 20
## 1304 2050 9 23 1979 2 OT F 20 23
## 1305 2054 9 23 1979 2 OT F 20 29
## 1306 2392 1 16 1980 2 OT F 19 20
## 1307 3232 8 14 1980 2 OT M 21 30
## 1308 3311 9 8 1980 2 OT F 20 21
## 1309 3528 11 9 1980 2 OT F 20 21
## 1310 3587 12 15 1980 2 OT F 19 21
## 1311 3740 1 12 1981 2 OT M 20 27
## 1312 4315 4 6 1981 2 OT F NA 25
## 1313 4956 10 26 1981 2 OT M 22 22
## 1314 4958 10 26 1981 2 OT F 21 22
## 1315 5018 11 23 1981 2 OT M 21 23
## 1316 5020 11 23 1981 2 OT F 20 22
## 1317 5305 1 25 1982 2 OT M 19 24
## 1318 6162 7 25 1982 2 OT F NA 27
## 1319 6562 9 18 1982 2 OT M 20 28
## 1320 6809 10 24 1982 2 OT M 21 27
## 1321 6928 10 24 1982 2 OT M 21 28
## 1322 7058 11 22 1982 2 OT M 21 27
## 1323 7270 1 13 1983 2 OT M 21 26
## 1324 8127 7 17 1983 2 OT F 22 29
## 1325 8148 7 17 1983 2 OT F 19 27
## 1326 8372 9 11 1983 2 OT F 18 24
## 1327 8490 10 16 1983 2 OT F 19 26
## 1328 8506 10 16 1983 2 OT M 20 24
## 1329 8650 11 13 1983 2 OT M 19 24
## 1330 8670 11 13 1983 2 OT F 19 25
## 1331 9544 9 29 1984 2 OT <NA> NA NA
## 1332 9789 12 31 1984 2 OT M 20 21
## 1333 10827 9 22 1985 2 OT M 21 22
## 1334 10946 10 13 1985 2 OT M 21 28
## 1335 10953 10 13 1985 2 OT F 19 20
## 1336 10956 10 13 1985 2 OT F 21 26
## 1337 13484 9 27 1987 2 OT M 20 24
## 1338 13607 10 25 1987 2 OT M 21 23
## 1339 13637 10 25 1987 2 OT F 21 24
## 1340 14288 3 21 1988 2 OT F 20 26
## 1341 14416 4 19 1988 2 OT F 20 27
## 1342 14521 5 15 1988 2 OT F 20 30
## 1343 14736 7 15 1988 2 OT F 21 38
## 1344 14903 9 12 1988 2 OT M 21 21
## 1345 15099 11 6 1988 2 OT M 21 23
## 1346 15134 11 6 1988 2 OT F 21 24
## 1347 15646 2 5 1989 2 OT M 21 24
## 1348 16411 7 30 1989 2 OT M 18 22
## 1349 16704 11 5 1989 2 OT M 22 22
## 1350 16708 11 5 1989 2 OT F 20 23
## 1351 16849 12 5 1989 2 OT M 21 22
## 1352 16961 1 7 1990 2 OT F 20 23
## 1353 17545 5 24 1990 2 OT F 20 25
## 1354 17918 10 16 1990 2 OT F 22 24
## 1355 17997 11 10 1990 2 OT M 20 22
## 1356 18000 11 10 1990 2 OT F 20 20
## 1357 18094 12 15 1990 2 OT F 21 26
## 1358 18117 12 15 1990 2 OT M 21 22
## 1359 18228 1 11 1991 2 OT M 20 22
## 1360 18232 1 11 1991 2 OT F 20 25
## 1361 18343 2 16 1991 2 OT M 21 27
## 1362 18347 2 16 1991 2 OT F 21 24
## 1363 18375 2 16 1991 2 OT M 20 24
## 1364 18468 3 13 1991 2 OT M 20 29
## 1365 18733 6 13 1991 2 OT F 15 28
## 1366 18839 7 12 1991 2 OT F 21 21
## 1367 18909 8 7 1991 2 OT F 23 31
## 1368 18911 8 7 1991 2 OT M 21 20
## 1369 19017 9 9 1991 2 OT M 22 22
## 1370 19019 9 9 1991 2 OT F 22 24
## 1371 19040 9 9 1991 2 OT F 20 18
## 1372 19124 10 10 1991 2 OT M 20 24
## 1373 19136 10 10 1991 2 OT F 21 21
## 1374 19223 11 13 1991 2 OT F 20 24
## 1375 19238 11 13 1991 2 OT M 20 25
## 1376 19251 11 13 1991 2 OT M 19 25
## 1377 19436 12 7 1991 2 OT M 20 23
## 1378 19439 12 7 1991 2 OT M 20 24
## 1379 19576 1 8 1992 2 OT M 19 22
## 1380 19639 2 6 1992 2 OT M 21 20
## 1381 20014 5 30 1992 2 OT F 21 23
## 1382 20020 5 30 1992 2 OT M 19 16
## 1383 20024 5 30 1992 2 OT M 23 30
## 1384 20036 5 30 1992 2 OT M 19 28
## 1385 20205 7 30 1992 2 OT M 22 23
## 1386 20462 10 18 1992 2 OT M 21 23
## 1387 20728 3 17 1993 2 OT M 17 26
## 1388 21340 2 1 1994 2 OT M 20 36
## 1389 21400 2 20 1994 2 OT M 20 27
## 1390 21492 4 10 1994 2 OT M 21 31
## 1391 21494 4 10 1994 2 OT F 20 30
## 1392 21577 5 18 1994 2 OT M 20 32
## 1393 22566 8 26 1995 2 OT F 23 19
## 1394 22719 9 23 1995 2 OT M 20 27
## 1395 23038 12 2 1995 2 OT F 21 23
## 1396 23151 12 21 1995 2 OT F 19 22
## 1397 23164 12 21 1995 2 OT M 20 29
## 1398 24176 7 20 1996 2 OT F 19 23
## 1399 24413 9 21 1996 2 OT F 19 31
## 1400 24426 9 21 1996 2 OT M 22 27
## 1401 24705 11 16 1996 2 OT F 22 27
## 1402 24806 12 18 1996 2 OT F 20 27
## 1403 24825 12 18 1996 2 OT M 20 23
## 1404 24981 2 8 1997 2 OT M 20 24
## 1405 25206 3 15 1997 2 OT F 21 39
## 1406 25233 3 15 1997 2 OT M 20 32
## 1407 25261 3 15 1997 2 OT M 20 27
## 1408 25486 4 12 1997 2 OT F 21 29
## 1409 25761 5 10 1997 2 OT M 21 27
## 1410 25839 5 10 1997 2 OT F 22 31
## 1411 25973 6 9 1997 2 OT M 19 18
## 1412 26015 6 9 1997 2 OT F 21 31
## 1413 26341 7 9 1997 2 OT M 20 30
## 1414 26507 7 9 1997 2 OT F 20 28
## 1415 26565 7 29 1997 2 OT M 20 18
## 1416 26604 7 29 1997 2 OT M 20 28
## 1417 26613 7 29 1997 2 OT M 20 24
## 1418 26808 9 27 1997 2 OT F 21 34
## 1419 26842 9 27 1997 2 OT M 21 26
## 1420 27192 11 22 1997 2 OT F 21 24
## 1421 27221 11 22 1997 2 OT M 21 22
## 1422 27323 12 28 1997 2 OT M 20 22
## 1423 27343 12 28 1997 2 OT F 20 26
## 1424 27438 1 31 1998 2 OT F 21 25
## 1425 27461 1 31 1998 2 OT M 21 22
## 1426 27727 3 29 1998 2 OT M 21 23
## 1427 27780 5 2 1998 2 OT M 19 29
## 1428 28555 9 20 1998 2 OT M 20 20
## 1429 28557 9 20 1998 2 OT M 20 20
## 1430 28656 10 24 1998 2 OT M 19 23
## 1431 28659 10 24 1998 2 OT M 20 27
## 1432 28664 10 24 1998 2 OT F 21 28
## 1433 28666 10 24 1998 2 OT M 20 22
## 1434 28803 11 21 1998 2 OT F 19 23
## 1435 28923 12 22 1998 2 OT F 20 23
## 1436 28924 12 22 1998 2 OT M 20 27
## 1437 28925 12 22 1998 2 OT F 21 31
## 1438 29030 1 16 1999 2 OT M 20 22
## 1439 29031 1 16 1999 2 OT M 20 26
## 1440 29034 1 16 1999 2 OT F 20 25
## 1441 30912 7 1 2000 2 OT M 20 23
## 1442 31213 8 25 2000 2 OT F 21 32
## 1443 31384 9 30 2000 2 OT M 20 25
## 1444 31388 9 30 2000 2 OT F 20 30
## 1445 31519 11 25 2000 2 OT M 20 26
## 1446 31521 11 25 2000 2 OT F 20 30
## 1447 31627 12 22 2000 2 OT M 20 25
## 1448 31628 12 22 2000 2 OT M 19 28
## 1449 31630 12 22 2000 2 OT F 20 28
## 1450 31715 1 21 2001 2 OT M 20 27
## 1451 32383 8 25 2001 2 OT M 20 25
## 1452 32384 8 25 2001 2 OT M 21 23
## 1453 32385 8 25 2001 2 OT F 21 31
## 1454 32389 8 25 2001 2 OT M 21 26
## 1455 32390 8 25 2001 2 OT F 21 23
## 1456 32598 9 22 2001 2 OT M 20 24
## 1457 32602 9 22 2001 2 OT M 20 23
## 1458 32818 10 13 2001 2 OT M 20 26
## 1459 32820 10 13 2001 2 OT M 20 21
## 1460 32821 10 13 2001 2 OT M 20 22
## 1461 32823 10 13 2001 2 OT M 20 26
## 1462 32829 10 13 2001 2 OT M 20 22
## 1463 33028 11 17 2001 2 OT M 20 21
## 1464 33033 11 17 2001 2 OT M 20 25
## 1465 33227 12 15 2001 2 OT M 20 23
## 1466 33229 12 15 2001 2 OT M 20 23
## 1467 33326 1 12 2002 2 OT F 20 26
## 1468 33327 1 12 2002 2 OT M 20 24
## 1469 33328 1 12 2002 2 OT F 21 22
## 1470 33332 1 12 2002 2 OT F 20 18
## 1471 33333 1 12 2002 2 OT M 20 25
## 1472 33334 1 12 2002 2 OT F 20 22
## 1473 33585 3 13 2002 2 OT F 20 23
## 1474 33838 4 17 2002 2 OT F 20 25
## 1475 33840 4 17 2002 2 OT M 21 29
## 1476 33952 5 15 2002 2 OT F 20 27
## 1477 34983 11 9 2002 2 OT F 21 24
## 1478 35204 12 7 2002 2 OT M 19 19
## 1479 35395 12 29 2002 2 OT M 19 23
## 1480 2384 1 16 1980 2 DO F 35 53
## 1481 2458 2 25 1980 2 DO F 37 55
## 1482 2459 2 25 1980 2 DO M 36 52
## 1483 2562 3 9 1980 2 DO M NA 55
## 1484 2606 3 9 1980 2 DO M NA 55
## 1485 2615 3 9 1980 2 DO M NA NA
## 1486 3453 11 9 1980 2 DO M 35 50
## 1487 3455 11 9 1980 2 DO F 36 53
## 1488 3739 1 12 1981 2 DO M 34 45
## 1489 3797 1 12 1981 2 DO F 37 43
## 1490 3885 2 1 1981 2 DO M 35 47
## 1491 3902 2 1 1981 2 DO F 37 49
## 1492 4193 4 6 1981 2 DO F NA 46
## 1493 4257 4 6 1981 2 DO M NA 51
## 1494 4287 4 6 1981 2 DO F NA 54
## 1495 4318 4 6 1981 2 DO M NA 46
## 1496 5177 1 1 1982 2 DO F 37 61
## 1497 5475 2 24 1982 2 DO F 38 59
## 1498 5585 3 29 1982 2 DO F 35 63
## 1499 5814 4 29 1982 2 DO M 36 40
## 1500 5954 5 22 1982 2 DO M 35 41
## 1501 6047 6 28 1982 2 DO M 35 42
## 1502 6201 7 25 1982 2 DO M NA 46
## 1503 6508 8 16 1982 2 DO M 35 NA
## 1504 6592 9 18 1982 2 DO M 34 47
## 1505 6867 10 24 1982 2 DO M 39 NA
## 1506 6905 10 24 1982 2 DO F 37 46
## 1507 6912 10 24 1982 2 DO F 34 44
## 1508 7116 11 22 1982 2 DO F 35 45
## 1509 7119 11 22 1982 2 DO F 36 43
## 1510 7263 1 13 1983 2 DO F 35 44
## 1511 7281 1 13 1983 2 DO F 35 36
## 1512 7407 2 27 1983 2 DO F 37 47
## 1513 7414 2 27 1983 2 DO M 36 38
## 1514 7566 3 15 1983 2 DO F 37 49
## 1515 8522 10 16 1983 2 DO M 35 53
## 1516 8887 2 5 1984 2 DO F 37 46
## 1517 9152 5 13 1984 2 DO F 36 50
## 1518 9164 5 13 1984 2 DO M 37 56
## 1519 9514 8 26 1984 2 DO F 33 36
## 1520 9590 9 30 1984 2 DO M 33 49
## 1521 9682 10 21 1984 2 DO F 34 43
## 1522 9694 10 21 1984 2 DO M 34 49
## 1523 9754 12 31 1984 2 DO F 34 51
## 1524 9785 12 31 1984 2 DO M 33 45
## 1525 9907 1 20 1985 2 DO F 35 48
## 1526 9913 1 20 1985 2 DO M 34 44
## 1527 10094 3 17 1985 2 DO F 32 12
## 1528 10102 3 17 1985 2 DO F 37 41
## 1529 10123 3 17 1985 2 DO M 33 46
## 1530 10308 4 21 1985 2 DO M 36 41
## 1531 10357 4 21 1985 2 DO M 34 52
## 1532 10445 5 24 1985 2 DO M 35 47
## 1533 10515 6 16 1985 2 DO F 36 54
## 1534 10528 6 16 1985 2 DO M 35 52
## 1535 10599 7 24 1985 2 DO F 38 47
## 1536 10615 7 24 1985 2 DO M 36 56
## 1537 10695 8 20 1985 2 DO F 35 33
## 1538 10706 8 20 1985 2 DO F 36 50
## 1539 10951 10 13 1985 2 DO F 38 52
## 1540 11209 12 8 1985 2 DO F 37 52
## 1541 11308 3 9 1986 2 DO F 37 68
## 1542 11622 6 5 1986 2 DO F 37 57
## 1543 12051 11 16 1986 2 DO F 37 62
## 1544 12063 11 16 1986 2 DO M 35 40
## 1545 12066 11 16 1986 2 DO M 35 44
## 1546 12146 12 15 1986 2 DO M 34 48
## 1547 12275 2 1 1987 2 DO M 35 51
## 1548 12433 3 2 1987 2 DO M 36 57
## 1549 12446 3 2 1987 2 DO M 36 52
## 1550 12543 4 6 1987 2 DO F 36 56
## 1551 12606 4 6 1987 2 DO M 35 52
## 1552 12702 4 26 1987 2 DO M 34 50
## 1553 12707 4 26 1987 2 DO F 35 53
## 1554 12789 5 28 1987 2 DO F 34 55
## 1555 12854 5 28 1987 2 DO M 34 50
## 1556 13007 7 1 1987 2 DO F 36 50
## 1557 13018 7 1 1987 2 DO M 35 52
## 1558 13164 7 26 1987 2 DO F NA 50
## 1559 13171 7 26 1987 2 DO M NA 53
## 1560 13291 8 26 1987 2 DO M 36 53
## 1561 13325 8 26 1987 2 DO F 37 39
## 1562 13431 9 27 1987 2 DO F 35 48
## 1563 13455 9 27 1987 2 DO M 37 51
## 1564 13617 10 25 1987 2 DO M 37 50
## 1565 13623 10 25 1987 2 DO F 34 46
## 1566 13768 11 22 1987 2 DO M 35 50
## 1567 13810 11 22 1987 2 DO F 37 46
## 1568 13997 1 24 1988 2 DO M 35 50
## 1569 14000 1 24 1988 2 DO F 35 43
## 1570 14155 2 22 1988 2 DO F 37 44
## 1571 14160 2 22 1988 2 DO M 37 51
## 1572 14190 2 22 1988 2 DO M 37 61
## 1573 14309 3 21 1988 2 DO M 36 50
## 1574 14336 3 21 1988 2 DO F 36 48
## 1575 14433 4 19 1988 2 DO M 36 52
## 1576 14441 4 19 1988 2 DO F 37 53
## 1577 14513 5 15 1988 2 DO M 36 51
## 1578 14515 5 15 1988 2 DO F 36 54
## 1579 14636 6 12 1988 2 DO M 35 51
## 1580 14713 7 15 1988 2 DO M 32 50
## 1581 14739 7 15 1988 2 DO F 37 56
## 1582 14803 8 10 1988 2 DO F 32 62
## 1583 14835 8 10 1988 2 DO M 37 52
## 1584 14901 9 12 1988 2 DO F 37 65
## 1585 14906 9 12 1988 2 DO M 37 55
## 1586 14990 10 9 1988 2 DO F 37 62
## 1587 15119 11 6 1988 2 DO M 36 48
## 1588 15142 11 6 1988 2 DO F 35 54
## 1589 15254 12 14 1988 2 DO M 37 56
## 1590 15279 12 14 1988 2 DO M 31 52
## 1591 15294 12 14 1988 2 DO F 34 61
## 1592 15448 1 11 1989 2 DO F 37 57
## 1593 15482 1 11 1989 2 DO M 37 57
## 1594 15641 2 5 1989 2 DO M 37 56
## 1595 15644 2 5 1989 2 DO F 36 54
## 1596 15734 3 13 1989 2 DO F 36 70
## 1597 15755 3 13 1989 2 DO M 36 58
## 1598 15764 3 13 1989 2 DO M 36 55
## 1599 15873 4 1 1989 2 DO M 37 54
## 1600 16015 5 10 1989 2 DO F 37 42
## 1601 16023 5 10 1989 2 DO M 37 56
## 1602 16168 6 4 1989 2 DO F 36 44
## 1603 16182 6 4 1989 2 DO M 36 54
## 1604 16286 7 4 1989 2 DO F NA 43
## 1605 16311 7 4 1989 2 DO M NA 58
## 1606 16374 7 30 1989 2 DO F 36 48
## 1607 16384 7 30 1989 2 DO M 37 58
## 1608 16412 7 30 1989 2 DO F 36 43
## 1609 16468 9 4 1989 2 DO F 36 45
## 1610 16472 9 4 1989 2 DO M 38 56
## 1611 16495 10 7 1989 2 DO F 36 46
## 1612 16510 10 7 1989 2 DO M 37 58
## 1613 16664 11 5 1989 2 DO F 36 46
## 1614 16712 11 5 1989 2 DO M 38 59
## 1615 16827 12 5 1989 2 DO F 36 49
## 1616 16845 12 5 1989 2 DO M 36 62
## 1617 16960 1 7 1990 2 DO M 38 61
## 1618 16965 1 7 1990 2 DO F 36 43
## 1619 17052 1 30 1990 2 DO F 35 30
## 1620 17070 1 30 1990 2 DO F 36 29
## 1621 17076 1 30 1990 2 DO M 38 60
## 1622 17178 2 25 1990 2 DO F 36 36
## 1623 17205 2 25 1990 2 DO M 37 62
## 1624 17323 3 30 1990 2 DO F 36 48
## 1625 17334 3 30 1990 2 DO M 36 54
## 1626 17345 3 30 1990 2 DO M 36 58
## 1627 17415 4 25 1990 2 DO F 36 45
## 1628 17418 4 25 1990 2 DO M 36 58
## 1629 17518 5 24 1990 2 DO F 36 49
## 1630 17527 5 24 1990 2 DO M 37 58
## 1631 17622 6 22 1990 2 DO F 36 42
## 1632 17624 6 22 1990 2 DO M 37 48
## 1633 17700 7 22 1990 2 DO F 38 54
## 1634 17774 8 17 1990 2 DO F 36 49
## 1635 17850 9 25 1990 2 DO F NA 35
## 1636 17857 9 25 1990 2 DO F NA 50
## 1637 17876 9 25 1990 2 DO F NA 33
## 1638 17921 10 16 1990 2 DO F 36 47
## 1639 17928 10 16 1990 2 DO M 33 22
## 1640 17933 10 16 1990 2 DO F 37 44
## 1641 17981 11 10 1990 2 DO F 36 42
## 1642 17992 11 10 1990 2 DO F 36 48
## 1643 18004 11 10 1990 2 DO M 37 26
## 1644 18009 11 10 1990 2 DO M 37 26
## 1645 18068 12 15 1990 2 DO F 36 46
## 1646 18086 12 15 1990 2 DO F 37 44
## 1647 18090 12 15 1990 2 DO M 35 40
## 1648 18103 12 15 1990 2 DO M 36 40
## 1649 18218 1 11 1991 2 DO M 36 52
## 1650 18219 1 11 1991 2 DO F 37 44
## 1651 18225 1 11 1991 2 DO M NA NA
## 1652 18247 1 11 1991 2 DO F 36 46
## 1653 18361 2 16 1991 2 DO F 37 52
## 1654 18452 3 13 1991 2 DO F 36 46
## 1655 18460 3 13 1991 2 DO F 35 47
## 1656 18470 3 13 1991 2 DO F 36 47
## 1657 18619 4 21 1991 2 DO F 36 55
## 1658 18637 4 21 1991 2 DO F 35 53
## 1659 18663 5 13 1991 2 DO F 36 51
## 1660 18669 5 13 1991 2 DO F 34 40
## 1661 18738 6 13 1991 2 DO M 28 44
## 1662 18764 6 13 1991 2 DO F 26 45
## 1663 18838 7 12 1991 2 DO F 36 45
## 1664 18943 8 7 1991 2 DO F 37 49
## 1665 19013 9 9 1991 2 DO F 37 48
## 1666 19024 9 9 1991 2 DO F 35 52
## 1667 19107 10 10 1991 2 DO F 34 50
## 1668 19130 10 10 1991 2 DO F 36 53
## 1669 19205 11 13 1991 2 DO F 35 48
## 1670 19212 11 13 1991 2 DO M 35 51
## 1671 19391 12 7 1991 2 DO F 36 49
## 1672 19431 12 7 1991 2 DO M 36 52
## 1673 19446 12 7 1991 2 DO F 35 54
## 1674 19545 1 8 1992 2 DO F 35 46
## 1675 19552 1 8 1992 2 DO M 35 47
## 1676 19565 1 8 1992 2 DO F 36 48
## 1677 19640 2 6 1992 2 DO F 34 46
## 1678 19647 2 6 1992 2 DO M 35 50
## 1679 19659 2 6 1992 2 DO F 36 52
## 1680 19757 3 7 1992 2 DO M 36 50
## 1681 19759 3 7 1992 2 DO F 36 46
## 1682 19786 3 7 1992 2 DO F 35 52
## 1683 19863 4 4 1992 2 DO F 35 51
## 1684 19867 4 4 1992 2 DO M 35 51
## 1685 19893 4 4 1992 2 DO F 36 55
## 1686 19944 5 2 1992 2 DO F 36 51
## 1687 19953 5 2 1992 2 DO M 36 53
## 1688 19964 5 2 1992 2 DO F 35 57
## 1689 20033 5 30 1992 2 DO F 36 62
## 1690 20095 7 3 1992 2 DO F 36 42
## 1691 20109 7 3 1992 2 DO F 33 48
## 1692 20110 7 3 1992 2 DO F 32 22
## 1693 20182 7 30 1992 2 DO F 35 37
## 1694 20186 7 30 1992 2 DO F 35 54
## 1695 20201 7 30 1992 2 DO M 33 32
## 1696 20248 8 29 1992 2 DO M 34 46
## 1697 20257 8 29 1992 2 DO M 33 43
## 1698 20269 8 29 1992 2 DO F 34 42
## 1699 20334 9 26 1992 2 DO F 35 52
## 1700 20352 9 26 1992 2 DO F 34 NA
## 1701 20431 10 18 1992 2 DO F 36 NA
## 1702 20468 10 18 1992 2 DO M 34 43
## 1703 20706 3 17 1993 2 DO M 35 57
## 1704 20778 4 23 1993 2 DO F 36 54
## 1705 20909 6 18 1993 2 DO F 36 NA
## 1706 20970 7 14 1993 2 DO F 37 48
## 1707 21097 9 16 1993 2 DO F 38 53
## 1708 21236 11 13 1993 2 DO F 36 46
## 1709 21294 12 14 1993 2 DO F 36 42
## 1710 21617 6 14 1994 2 DO M 38 42
## 1711 21678 7 8 1994 2 DO M 36 44
## 1712 21828 10 12 1994 2 DO M 37 48
## 1713 21833 10 12 1994 2 DO M 36 52
## 1714 21884 11 1 1994 2 DO M 37 50
## 1715 21901 11 1 1994 2 DO M 36 47
## 1716 21944 12 4 1994 2 DO M 36 49
## 1717 21957 12 4 1994 2 DO M 39 46
## 1718 21958 12 4 1994 2 DO M 37 46
## 1719 21995 1 11 1995 2 DO M 36 51
## 1720 22001 1 11 1995 2 DO M 36 41
## 1721 22008 1 11 1995 2 DO M 38 52
## 1722 22049 2 4 1995 2 DO M 58 51
## 1723 22062 2 4 1995 2 DO M 37 52
## 1724 22069 2 4 1995 2 DO M 37 62
## 1725 22120 3 4 1995 2 DO M 37 54
## 1726 22169 4 1 1995 2 DO F 37 46
## 1727 22235 4 29 1995 2 DO M 36 55
## 1728 22469 7 20 1995 2 DO F 33 24
## 1729 23223 1 27 1996 2 DO M 37 66
## 1730 23242 1 27 1996 2 DO M 36 54
## 1731 23388 2 24 1996 2 DO M 35 49
## 1732 24867 12 18 1996 2 DO F 36 57
## 1733 24983 2 8 1997 2 DO M 35 35
## 1734 25159 3 15 1997 2 DO M 39 55
## 1735 25257 3 15 1997 2 DO F 35 50
## 1736 25281 3 15 1997 2 DO F 35 50
## 1737 25285 3 15 1997 2 DO F 37 53
## 1738 25462 4 12 1997 2 DO M 36 46
## 1739 25734 5 10 1997 2 DO M 36 52
## 1740 25813 5 10 1997 2 DO M 34 47
## 1741 26007 6 9 1997 2 DO M 37 48
## 1742 26034 6 9 1997 2 DO M 36 47
## 1743 26322 7 9 1997 2 DO F 36 46
## 1744 26460 7 9 1997 2 DO M 36 46
## 1745 26561 7 29 1997 2 DO F 36 47
## 1746 26633 7 29 1997 2 DO M 37 49
## 1747 26798 9 27 1997 2 DO M 36 51
## 1748 26834 9 27 1997 2 DO M 36 58
## 1749 26973 10 25 1997 2 DO M 36 49
## 1750 27168 11 22 1997 2 DO M 37 42
## 1751 27200 11 22 1997 2 DO M 35 48
## 1752 27245 11 22 1997 2 DO M 37 51
## 1753 27321 12 28 1997 2 DO M 37 50
## 1754 27434 1 31 1998 2 DO M 36 52
## 1755 27467 1 31 1998 2 DO F 35 53
## 1756 27555 3 1 1998 2 DO M 36 NA
## 1757 28325 8 22 1998 2 DO M 33 52
## 1758 28558 9 20 1998 2 DO M 35 53
## 1759 28661 10 24 1998 2 DO M 33 50
## 1760 28801 11 21 1998 2 DO M 35 52
## 1761 28802 11 21 1998 2 DO M 32 42
## 1762 28922 12 22 1998 2 DO F 35 43
## 1763 29029 1 16 1999 2 DO M 36 50
## 1764 29032 1 16 1999 2 DO F 34 46
## 1765 29033 1 16 1999 2 DO F 35 51
## 1766 29169 2 20 1999 2 DO F 34 49
## 1767 29312 3 14 1999 2 DO F 34 52
## 1768 29432 4 17 1999 2 DO M 36 51
## 1769 29438 4 17 1999 2 DO F 34 47
## 1770 29570 5 15 1999 2 DO M 38 40
## 1771 29703 6 12 1999 2 DO M 38 41
## 1772 30171 1 8 2000 2 DO M 36 52
## 1773 30173 1 8 2000 2 DO F 35 54
## 1774 30303 2 5 2000 2 DO F 36 52
## 1775 30305 2 5 2000 2 DO M 37 54
## 1776 30442 3 4 2000 2 DO F NA 66
## 1777 30612 4 30 2000 2 DO F 34 42
## 1778 30739 6 3 2000 2 DO M 34 31
## 1779 33030 11 17 2001 2 DO F 35 46
## 1780 33230 12 15 2001 2 DO M 35 45
## 1781 33233 12 15 2001 2 DO M 36 52
## 1782 33330 1 12 2002 2 DO M 35 51
## 1783 33335 1 12 2002 2 DO F 36 46
## 1784 33406 2 9 2002 2 DO F 36 49
## 1785 33407 2 9 2002 2 DO M 35 52
## 1786 33582 3 13 2002 2 DO M 36 56
## 1787 33587 3 13 2002 2 DO F 36 55
## 1788 33835 4 17 2002 2 DO F 35 38
## 1789 33836 4 17 2002 2 DO F 36 50
## 1790 33960 5 15 2002 2 DO M 37 52
## 1791 33961 5 15 2002 2 DO F 36 NA
## 1792 34431 7 13 2002 2 DO M 36 49
## 1793 242 9 13 1977 2 OX M 19 22
## 1794 587 2 18 1978 2 OX <NA> NA NA
## 1795 2877 4 18 1980 2 SS <NA> NA NA
## 1796 8345 9 11 1983 2 SS <NA> NA NA
## 1797 9424 8 1 1984 2 SS <NA> NA NA
## 1798 9571 9 30 1984 2 SS <NA> NA NA
## 1799 10418 5 24 1985 2 SS <NA> NA NA
## 1800 16163 6 4 1989 2 SS <NA> NA NA
## 1801 16530 10 7 1989 2 SS <NA> NA NA
## 1802 274 10 16 1977 2 OL F 20 21
## 1803 366 11 12 1977 2 OL <NA> NA NA
## 1804 441 12 10 1977 2 OL <NA> NA NA
## 1805 513 1 8 1978 2 OL <NA> NA NA
## 1806 1543 12 3 1978 2 OL F 22 38
## 1807 1544 12 3 1978 2 OL M 21 32
## 1808 1573 1 29 1979 2 OL F 19 31
## 1809 1597 1 29 1979 2 OL F NA 39
## 1810 1646 2 25 1979 2 OL F 20 30
## 1811 2163 11 17 1979 2 OL F 21 34
## 1812 2178 11 17 1979 2 OL F 19 35
## 1813 2183 11 17 1979 2 OL M 21 36
## 1814 2375 1 16 1980 2 OL M 21 36
## 1815 2383 1 16 1980 2 OL F 21 38
## 1816 2391 1 16 1980 2 OL F 21 34
## 1817 2531 2 25 1980 2 OL F 23 41
## 1818 2532 2 25 1980 2 OL M 21 40
## 1819 2627 3 9 1980 2 OL M NA 39
## 1820 2649 3 9 1980 2 OL F NA 38
## 1821 2818 3 22 1980 2 OL M NA 37
## 1822 2978 5 18 1980 2 OL M 21 39
## 1823 3799 1 12 1981 2 OL M 20 39
## 1824 3804 1 12 1981 2 OL F 20 34
## 1825 3893 2 1 1981 2 OL F 20 34
## 1826 4311 4 6 1981 2 OL F NA 38
## 1827 5187 1 1 1982 2 OL F 21 27
## 1828 5292 1 25 1982 2 OL M 21 42
## 1829 5510 3 29 1982 2 OL F 21 43
## 1830 6152 7 25 1982 2 OL F NA 33
## 1831 6519 9 18 1982 2 OL F 21 27
## 1832 9276 5 28 1984 2 OL F 19 28
## 1833 9990 2 17 1985 2 OL F 19 26
## 1834 10091 3 17 1985 2 OL M 19 32
## 1835 10108 3 17 1985 2 OL F 20 33
## 1836 10911 10 13 1985 2 OL F 21 25
## 1837 10945 10 13 1985 2 OL M 21 35
## 1838 11091 11 17 1985 2 OL M 20 37
## 1839 12161 12 15 1986 2 OL M 19 29
## 1840 12311 2 1 1987 2 OL M 18 32
## 1841 12420 3 2 1987 2 OL M 22 33
## 1842 12447 3 2 1987 2 OL M 21 27
## 1843 12464 3 2 1987 2 OL F 21 30
## 1844 12571 4 6 1987 2 OL M 22 32
## 1845 12738 5 28 1987 2 OL F 19 30
## 1846 12960 7 1 1987 2 OL M 21 32
## 1847 12969 7 1 1987 2 OL F 18 29
## 1848 13316 8 26 1987 2 OL M 20 25
## 1849 13962 1 24 1988 2 OL M 21 34
## 1850 13984 1 24 1988 2 OL F 21 33
## 1851 14163 2 22 1988 2 OL F 21 34
## 1852 15114 11 6 1988 2 OL M 22 36
## 1853 15389 1 11 1989 2 OL M 22 42
## 1854 15662 2 5 1989 2 OL M 22 41
## 1855 15733 3 13 1989 2 OL F 22 34
## 1856 15778 3 13 1989 2 OL M 22 42
## 1857 15897 4 1 1989 2 OL M 20 36
## 1858 18623 4 21 1991 2 OL M 19 17
## 1859 18630 4 21 1991 2 OL F 21 26
## 1860 18744 6 13 1991 2 OL M 19 18
## 1861 19215 11 13 1991 2 OL F 18 25
## 1862 19411 12 7 1991 2 OL F 20 24
## 1863 19658 2 6 1992 2 OL M 21 23
## 1864 20370 9 26 1992 2 OL F 18 24
## 1865 20444 10 18 1992 2 OL F 19 31
## 1866 21208 11 13 1993 2 OL M 21 26
## 1867 22108 3 4 1995 2 OL M 21 24
## 1868 25468 4 12 1997 2 OL M 20 32
## 1869 34779 10 5 2002 2 OL M 20 27
## 1870 2518 2 25 1980 2 RM F 17 9
## 1871 2646 3 9 1980 2 RM M NA 10
## 1872 5190 1 1 1982 2 RM F 17 11
## 1873 5477 2 24 1982 2 RM F 17 8
## 1874 5489 2 24 1982 2 RM M 16 9
## 1875 5502 2 24 1982 2 RM M 16 9
## 1876 5564 3 29 1982 2 RM M 16 10
## 1877 5566 3 29 1982 2 RM F 15 10
## 1878 7583 3 15 1983 2 RM M 16 11
## 1879 7761 4 17 1983 2 RM F 19 10
## 1880 9159 5 13 1984 2 RM F 16 14
## 1881 13799 11 22 1987 2 RM F 17 10
## 1882 13968 1 24 1988 2 RM F 17 11
## 1883 14294 3 21 1988 2 RM F 17 10
## 1884 15237 12 14 1988 2 RM F 17 11
## 1885 15275 12 14 1988 2 RM M 17 10
## 1886 15434 1 11 1989 2 RM F 17 12
## 1887 15592 2 5 1989 2 RM M 19 11
## 1888 15598 2 5 1989 2 RM F 19 9
## 1889 15631 2 5 1989 2 RM F 17 12
## 1890 15746 3 13 1989 2 RM M 17 11
## 1891 15761 3 13 1989 2 RM F 17 14
## 1892 15775 3 13 1989 2 RM M 17 10
## 1893 15785 3 13 1989 2 RM F 17 12
## 1894 15894 4 1 1989 2 RM M 17 10
## 1895 17420 4 25 1990 2 RM M 17 8
## 1896 18099 12 15 1990 2 RM F 15 8
## 1897 18216 1 11 1991 2 RM M 17 10
## 1898 18339 2 16 1991 2 RM M 16 11
## 1899 18366 2 16 1991 2 RM M 16 10
## 1900 18474 3 13 1991 2 RM F 17 12
## 1901 18476 3 13 1991 2 RM M 16 10
## 1902 18491 3 13 1991 2 RM M 15 10
## 1903 18750 6 13 1991 2 RM M NA 13
## 1904 19450 12 7 1991 2 RM M 17 10
## 1905 19579 1 8 1992 2 RM F 14 8
## 1906 19666 2 6 1992 2 RM F 17 8
## 1907 19676 2 6 1992 2 RM M 16 9
## 1908 19677 2 6 1992 2 RM M 15 8
## 1909 19790 3 7 1992 2 RM F 16 9
## 1910 19793 3 7 1992 2 RM M 17 10
## 1911 19957 5 2 1992 2 RM M 17 12
## 1912 20601 1 24 1993 2 RM M 16 NA
## 1913 20602 1 24 1993 2 RM F NA 11
## 1914 20653 2 19 1993 2 RM M 17 10
## 1915 20719 3 17 1993 2 RM M 17 10
## 1916 21619 6 14 1994 2 RM M 17 9
## 1917 23167 12 21 1995 2 RM F 16 9
## 1918 23381 2 24 1996 2 RM M 16 12
## 1919 23407 2 24 1996 2 RM F 17 13
## 1920 23558 3 23 1996 2 RM F 17 13
## 1921 23592 3 23 1996 2 RM M 17 11
## 1922 23680 4 14 1996 2 RM M 18 12
## 1923 24838 12 18 1996 2 RM M 18 11
## 1924 24847 12 18 1996 2 RM F 16 9
## 1925 24980 2 8 1997 2 RM F 17 11
## 1926 25011 2 8 1997 2 RM M 17 10
## 1927 25222 3 15 1997 2 RM M 16 11
## 1928 25547 4 12 1997 2 RM F 18 14
## 1929 25833 5 10 1997 2 RM F NA 12
## 1930 26853 9 27 1997 2 RM F 18 15
## 1931 27260 11 22 1997 2 RM M 16 11
## 1932 27272 11 22 1997 2 RM F 16 11
## 1933 27330 12 28 1997 2 RM M 15 9
## 1934 29170 2 20 1999 2 RM M 18 13
## 1935 29307 3 14 1999 2 RM F 18 9
## 1936 30065 12 5 1999 2 RM M 18 11
## 1937 30435 3 4 2000 2 RM F 17 13
## 1938 31518 11 25 2000 2 RM M 18 12
## 1939 31716 1 21 2001 2 RM M 17 11
## 1940 33405 2 9 2002 2 RM M 19 8
## 1941 6466 8 16 1982 2 SA <NA> NA NA
## 1942 9157 5 13 1984 2 SA <NA> NA NA
## 1943 9354 7 4 1984 2 SA <NA> NA NA
## 1944 1653 2 25 1979 2 PM F 19 26
## 1945 1670 2 25 1979 2 PM M 21 26
## 1946 7788 4 17 1983 2 PM M 20 19
## 1947 10007 2 17 1985 2 PM M 20 19
## 1948 12040 11 16 1986 2 PM F 19 18
## 1949 12044 11 16 1986 2 PM F 20 20
## 1950 12061 11 16 1986 2 PM M 21 20
## 1951 12142 12 15 1986 2 PM M 18 25
## 1952 12150 12 15 1986 2 PM M 19 23
## 1953 12454 3 2 1987 2 PM M 25 27
## 1954 12577 4 6 1987 2 PM M 21 25
## 1955 12596 4 6 1987 2 PM F 21 32
## 1956 12604 4 6 1987 2 PM M 21 25
## 1957 12672 4 26 1987 2 PM F 19 24
## 1958 12785 5 28 1987 2 PM F 20 18
## 1959 12826 5 28 1987 2 PM F 21 27
## 1960 13142 7 26 1987 2 PM F NA 33
## 1961 23146 12 21 1995 2 PM M 21 23
## 1962 23371 2 24 1996 2 PM M 20 16
## 1963 24861 12 18 1996 2 PM M 21 21
## 1964 24955 2 8 1997 2 PM M 20 23
## 1965 24960 2 8 1997 2 PM F 20 30
## 1966 25437 4 12 1997 2 PM F 21 28
## 1967 25442 4 12 1997 2 PM M 20 18
## 1968 25515 4 12 1997 2 PM F 22 24
## 1969 25751 5 10 1997 2 PM F 21 26
## 1970 25769 5 10 1997 2 PM M 21 22
## 1971 25788 5 10 1997 2 PM F 20 13
## 1972 25998 6 9 1997 2 PM F 21 29
## 1973 27031 10 25 1997 2 PM M 21 17
## 1974 28654 10 24 1998 2 PM F 21 21
## 1975 29171 2 20 1999 2 PM M 20 24
## 1976 29172 2 20 1999 2 PM F 20 24
## 1977 29306 3 14 1999 2 PM M 21 22
## 1978 29309 3 14 1999 2 PM F 20 23
## 1979 29569 5 15 1999 2 PM F 20 21
## 1980 11157 12 8 1985 2 AH <NA> NA NA
## 1981 13917 1 24 1988 2 AH <NA> NA NA
## 1982 13928 1 24 1988 2 AH <NA> NA NA
## 1983 14101 2 22 1988 2 AH <NA> NA NA
## 1984 14528 5 15 1988 2 AH <NA> NA NA
## 1985 14592 6 12 1988 2 AH <NA> NA NA
## 1986 15419 1 11 1989 2 AH <NA> NA NA
## 1987 18664 5 13 1991 2 DX <NA> NA NA
## 1988 19239 11 13 1991 2 DX <NA> NA NA
## 1989 19547 1 8 1992 2 DX <NA> NA NA
## 1990 20446 10 18 1992 2 DX <NA> NA NA
## 1991 5302 1 25 1982 2 AB <NA> NA NA
## 1992 5310 1 25 1982 2 AB <NA> NA NA
## 1993 5488 2 24 1982 2 AB <NA> NA NA
## 1994 5496 2 24 1982 2 AB <NA> NA NA
## 1995 7303 1 13 1983 2 AB <NA> NA NA
## 1996 7594 3 15 1983 2 AB <NA> NA NA
## 1997 7611 3 15 1983 2 AB <NA> NA NA
## 1998 7614 3 15 1983 2 AB <NA> NA NA
## 1999 9416 8 1 1984 2 AB <NA> NA NA
## 2000 12246 2 1 1987 2 AB <NA> NA NA
## 2001 13321 8 26 1987 2 AB <NA> NA NA
## 2002 14158 2 22 1988 2 AB <NA> NA NA
## 2003 16981 1 7 1990 2 AB <NA> NA NA
## 2004 21160 10 15 1993 2 AB <NA> NA NA
## 2005 3306 9 8 1980 2 CM <NA> NA NA
## 2006 9325 7 4 1984 2 CQ <NA> NA NA
## 2007 16382 7 30 1989 2 RF F 17 16
## 2008 13644 10 25 1987 2 UR <NA> NA NA
## 2009 13828 11 22 1987 2 UP <NA> NA NA
## 2010 19952 5 2 1992 2 UL <NA> NA NA
## 2011 19121 10 10 1991 2 BA M 13 6
## 2012 35402 12 29 2002 2 RO F 15 12
## 2013 19217 11 13 1991 2 SO F 21 42
## 2014 19655 2 6 1992 2 SO F 26 51
## 2015 19961 5 2 1992 2 SO F 30 82
## 2016 20267 8 29 1992 2 SO F 25 15
## 2017 21053 8 19 1993 2 SO M 28 NA
## 2018 21226 11 13 1993 2 SO F 25 70
## 2019 25790 5 10 1997 2 SO F 28 100
## 2020 25820 5 10 1997 2 SO F 22 21
## 2021 23239 1 27 1996 2 PB M 29 46
## 2022 24052 6 13 1996 2 PB M 26 26
## 2023 24216 7 20 1996 2 PB F 26 24
## 2024 24423 9 21 1996 2 PB M 26 36
## 2025 24440 9 21 1996 2 PB F 25 24
## 2026 24452 9 21 1996 2 PB M 25 32
## 2027 24571 10 12 1996 2 PB M 27 37
## 2028 24579 10 12 1996 2 PB M 26 26
## 2029 24595 10 12 1996 2 PB M 28 38
## 2030 24692 11 16 1996 2 PB M 28 30
## 2031 24717 11 16 1996 2 PB M 25 27
## 2032 24794 12 18 1996 2 PB M 27 34
## 2033 24845 12 18 1996 2 PB F 24 26
## 2034 24850 12 18 1996 2 PB M 27 44
## 2035 24921 2 8 1997 2 PB M 22 32
## 2036 24995 2 8 1997 2 PB M 28 37
## 2037 24999 2 8 1997 2 PB F 27 38
## 2038 25007 2 8 1997 2 PB M 26 43
## 2039 25020 2 8 1997 2 PB M 27 39
## 2040 25194 3 15 1997 2 PB M 27 38
## 2041 25265 3 15 1997 2 PB M 25 40
## 2042 25271 3 15 1997 2 PB <NA> NA NA
## 2043 25490 4 12 1997 2 PB M 21 31
## 2044 25815 5 10 1997 2 PB M 25 17
## 2045 26012 6 9 1997 2 PB F 24 24
## 2046 26020 6 9 1997 2 PB M 27 42
## 2047 26024 6 9 1997 2 PB M 26 34
## 2048 26333 7 9 1997 2 PB F 22 17
## 2049 26351 7 9 1997 2 PB M 27 37
## 2050 26465 7 9 1997 2 PB F 26 23
## 2051 26488 7 9 1997 2 PB F 26 28
## 2052 26590 7 29 1997 2 PB F 25 27
## 2053 26796 9 27 1997 2 PB F 26 28
## 2054 26860 9 27 1997 2 PB F 26 29
## 2055 26863 9 27 1997 2 PB M 26 40
## 2056 26869 9 27 1997 2 PB F 26 27
## 2057 26995 10 25 1997 2 PB F 26 29
## 2058 27018 10 25 1997 2 PB F 25 27
## 2059 27034 10 25 1997 2 PB M 27 45
## 2060 27053 10 25 1997 2 PB F 26 27
## 2061 27209 11 22 1997 2 PB F 26 25
## 2062 27256 11 22 1997 2 PB M 27 41
## 2063 27280 11 22 1997 2 PB F 25 27
## 2064 27291 11 22 1997 2 PB M 27 30
## 2065 27347 12 28 1997 2 PB F 26 28
## 2066 27474 1 31 1998 2 PB M 27 42
## 2067 27580 3 1 1998 2 PB M 28 NA
## 2068 27582 3 1 1998 2 PB M 27 NA
## 2069 27589 3 1 1998 2 PB F 26 NA
## 2070 27733 3 29 1998 2 PB M 27 30
## 2071 28326 8 22 1998 2 PB F 25 28
## 2072 28330 8 22 1998 2 PB F 26 33
## 2073 28560 9 20 1998 2 PB F 26 35
## 2074 28655 10 24 1998 2 PB M 23 26
## 2075 28657 10 24 1998 2 PB F 27 29
## 2076 28665 10 24 1998 2 PB F 25 32
## 2077 28804 11 21 1998 2 PB F 26 27
## 2078 29571 5 15 1999 2 PB F 26 18
## 2079 29575 5 15 1999 2 PB F 26 24
## 2080 29705 6 12 1999 2 PB F 25 25
## 2081 29864 10 9 1999 2 PB F 26 22
## 2082 29946 11 6 1999 2 PB M 27 38
## 2083 30068 12 5 1999 2 PB M 27 38
## 2084 30070 12 5 1999 2 PB M 26 41
## 2085 30169 1 8 2000 2 PB F 25 24
## 2086 30176 1 8 2000 2 PB M 26 27
## 2087 30297 2 5 2000 2 PB M 26 30
## 2088 30298 2 5 2000 2 PB M 26 46
## 2089 30299 2 5 2000 2 PB F 25 29
## 2090 30300 2 5 2000 2 PB F 26 42
## 2091 30433 3 4 2000 2 PB F 26 42
## 2092 30436 3 4 2000 2 PB M 26 30
## 2093 30437 3 4 2000 2 PB M 26 47
## 2094 30438 3 4 2000 2 PB F 27 42
## 2095 30440 3 4 2000 2 PB F 25 26
## 2096 30441 3 4 2000 2 PB F 25 31
## 2097 30607 4 30 2000 2 PB M 26 45
## 2098 30610 4 30 2000 2 PB F 25 31
## 2099 30611 4 30 2000 2 PB M 26 41
## 2100 30731 6 3 2000 2 PB M 26 18
## 2101 30732 6 3 2000 2 PB M 27 43
## 2102 30734 6 3 2000 2 PB M 27 29
## 2103 30735 6 3 2000 2 PB M 27 27
## 2104 30736 6 3 2000 2 PB F 25 33
## 2105 30737 6 3 2000 2 PB F 26 40
## 2106 30910 7 1 2000 2 PB M 26 21
## 2107 30911 7 1 2000 2 PB M 26 46
## 2108 30914 7 1 2000 2 PB F 25 38
## 2109 30916 7 1 2000 2 PB M 27 35
## 2110 30917 7 1 2000 2 PB M 25 25
## 2111 30918 7 1 2000 2 PB M 27 24
## 2112 30919 7 1 2000 2 PB F 26 30
## 2113 30920 7 1 2000 2 PB F 25 19
## 2114 31104 7 22 2000 2 PB M 27 47
## 2115 31105 7 22 2000 2 PB M 26 31
## 2116 31109 7 22 2000 2 PB F 26 25
## 2117 31110 7 22 2000 2 PB M 26 29
## 2118 31205 8 25 2000 2 PB M 27 48
## 2119 31206 8 25 2000 2 PB M 27 34
## 2120 31210 8 25 2000 2 PB M 27 31
## 2121 31212 8 25 2000 2 PB M 26 32
## 2122 31216 8 25 2000 2 PB M 27 32
## 2123 31381 9 30 2000 2 PB M 26 43
## 2124 31382 9 30 2000 2 PB M 26 31
## 2125 31383 9 30 2000 2 PB M 27 33
## 2126 31385 9 30 2000 2 PB M 26 31
## 2127 31390 9 30 2000 2 PB M 26 30
## 2128 31513 11 25 2000 2 PB M 27 34
## 2129 31514 11 25 2000 2 PB M 27 33
## 2130 31626 12 22 2000 2 PB M 26 38
## 2131 31629 12 22 2000 2 PB M 26 41
## 2132 31631 12 22 2000 2 PB M 26 34
## 2133 31719 1 21 2001 2 PB M 26 42
## 2134 31720 1 21 2001 2 PB M 27 41
## 2135 31793 3 3 2001 2 PB M 26 41
## 2136 31857 3 24 2001 2 PB M 26 40
## 2137 32166 6 25 2001 2 PB M 27 36
## 2138 32382 8 25 2001 2 PB F 26 32
## 2139 32600 9 22 2001 2 PB M 27 40
## 2140 32603 9 22 2001 2 PB F 27 34
## 2141 32825 10 13 2001 2 PB M 27 41
## 2142 32826 10 13 2001 2 PB F 26 32
## 2143 33031 11 17 2001 2 PB F 26 32
## 2144 33037 11 17 2001 2 PB M 28 41
## 2145 33038 11 17 2001 2 PB F 26 35
## 2146 33039 11 17 2001 2 PB F 27 31
## 2147 33235 12 15 2001 2 PB M 28 43
## 2148 33236 12 15 2001 2 PB F 27 34
## 2149 33337 1 12 2002 2 PB M 28 47
## 2150 33338 1 12 2002 2 PB F 26 30
## 2151 33404 2 9 2002 2 PB M 27 54
## 2152 33408 2 9 2002 2 PB M 28 41
## 2153 33409 2 9 2002 2 PB M 27 49
## 2154 33414 2 9 2002 2 PB F 27 31
## 2155 33588 3 13 2002 2 PB F 26 32
## 2156 33834 4 17 2002 2 PB F 26 34
## 2157 33841 4 17 2002 2 PB M 27 42
## 2158 33954 5 15 2002 2 PB M 26 17
## 2159 33955 5 15 2002 2 PB F 25 19
## 2160 33956 5 15 2002 2 PB F 26 41
## 2161 33962 5 15 2002 2 PB F 26 19
## 2162 33964 5 15 2002 2 PB F 27 34
## 2163 34195 6 15 2002 2 PB M 28 32
## 2164 34196 6 15 2002 2 PB F 26 45
## 2165 34424 7 13 2002 2 PB F 25 34
## 2166 34427 7 13 2002 2 PB F 25 26
## 2167 34429 7 13 2002 2 PB M 26 35
## 2168 34775 10 5 2002 2 PB F 26 21
## 2169 34776 10 5 2002 2 PB F 26 27
## 2170 34777 10 5 2002 2 PB M 27 42
## 2171 34778 10 5 2002 2 PB F 26 27
## 2172 34780 10 5 2002 2 PB M 26 38
## 2173 34782 10 5 2002 2 PB M 27 40
## 2174 34982 11 9 2002 2 PB F 27 27
## 2175 34986 11 9 2002 2 PB M 28 44
## 2176 34989 11 9 2002 2 PB F 25 27
## 2177 35203 12 7 2002 2 PB F 27 27
## 2178 35205 12 7 2002 2 PB F 25 28
## 2179 35206 12 7 2002 2 PB F 26 28
## 2180 35207 12 7 2002 2 PB M 27 38
## 2181 35208 12 7 2002 2 PB M 27 43
## 2182 35211 12 7 2002 2 PB M 26 41
## 2183 35394 12 29 2002 2 PB M 26 49
## 2184 35396 12 29 2002 2 PB M 27 46
## 2185 35398 12 29 2002 2 PB F 26 27
## 2186 35399 12 29 2002 2 PB F 27 29
## 2187 35400 12 29 2002 2 PB M 26 36
## 2188 35403 12 29 2002 2 PB M 27 39
## 2189 35405 12 29 2002 2 PB F 26 26
## 2190 35406 12 29 2002 2 PB M 26 44
## 2191 35407 12 29 2002 2 PB M 27 37
## 2192 2 7 16 1977 3 NL M 33 NA
## 2193 344 10 18 1977 3 NL <NA> NA NA
## 2194 509 1 8 1978 3 NL <NA> NA NA
## 2195 655 3 11 1978 3 NL M 32 232
## 2196 755 4 8 1978 3 NL F 32 NA
## 2197 886 5 18 1978 3 NL F NA 182
## 2198 1083 7 8 1978 3 NL F 34 115
## 2199 1087 7 8 1978 3 NL M 34 190
## 2200 1250 9 4 1978 3 NL F 34 141
## 2201 1361 10 8 1978 3 NL <NA> NA NA
## 2202 3089 6 23 1980 3 NL F 32 150
## 2203 3216 8 14 1980 3 NL F 33 154
## 2204 4940 10 26 1981 3 NL M 34 195
## 2205 5036 11 23 1981 3 NL F NA 157
## 2206 5163 1 1 1982 3 NL F 34 163
## 2207 5389 2 23 1982 3 NL F 33 145
## 2208 5403 2 23 1982 3 NL M 35 211
## 2209 5612 3 30 1982 3 NL F 31 103
## 2210 5783 4 29 1982 3 NL M 33 114
## 2211 5938 5 22 1982 3 NL M 35 136
## 2212 5981 6 28 1982 3 NL M 35 173
## 2213 7057 11 22 1982 3 NL M 33 200
## 2214 7896 5 15 1983 3 NL F 33 110
## 2215 8002 6 18 1983 3 NL F 32 150
## 2216 8480 10 16 1983 3 NL M 34 226
## 2217 8857 2 5 1984 3 NL F 34 164
## 2218 8870 2 5 1984 3 NL M 36 241
## 2219 9031 4 10 1984 3 NL M 34 250
## 2220 9122 5 13 1984 3 NL M 33 220
## 2221 9428 8 1 1984 3 NL M 34 206
## 2222 9497 8 26 1984 3 NL M 33 211
## 2223 9573 9 30 1984 3 NL M 35 222
## 2224 9991 2 17 1985 3 NL F 31 141
## 2225 10085 3 17 1985 3 NL F 31 153
## 2226 10282 4 21 1985 3 NL M 33 103
## 2227 10691 8 20 1985 3 NL M 32 157
## 2228 10780 9 22 1985 3 NL <NA> NA NA
## 2229 11014 11 17 1985 3 NL F 30 146
## 2230 11151 12 8 1985 3 NL F 30 150
## 2231 11174 12 8 1985 3 NL M 33 225
## 2232 11302 3 9 1986 3 NL F 30 173
## 2233 11395 4 13 1986 3 NL F 30 176
## 2234 11398 4 13 1986 3 NL <NA> NA 102
## 2235 11500 5 11 1986 3 NL M 31 138
## 2236 11586 6 5 1986 3 NL F 32 174
## 2237 11592 6 5 1986 3 NL M 32 123
## 2238 11848 9 7 1986 3 NL F 30 172
## 2239 12120 12 15 1986 3 NL F 29 177
## 2240 12390 3 2 1987 3 NL F 33 176
## 2241 12550 4 6 1987 3 NL F 32 199
## 2242 12673 4 26 1987 3 NL F 29 69
## 2243 12739 5 28 1987 3 NL F 30 192
## 2244 12742 5 28 1987 3 NL M 28 NA
## 2245 13146 7 26 1987 3 NL F NA 79
## 2246 13429 9 27 1987 3 NL M 32 140
## 2247 13435 9 27 1987 3 NL M 35 179
## 2248 13567 10 25 1987 3 NL M 33 180
## 2249 13734 11 22 1987 3 NL F 34 161
## 2250 13769 11 22 1987 3 NL M 33 186
## 2251 13940 1 24 1988 3 NL M 33 209
## 2252 14284 3 21 1988 3 NL M 32 226
## 2253 15239 12 14 1988 3 NL M 33 196
## 2254 15412 1 11 1989 3 NL M 31 198
## 2255 15589 2 5 1989 3 NL M 33 197
## 2256 15802 3 14 1989 3 NL M 33 192
## 2257 15845 4 1 1989 3 NL M 33 196
## 2258 16060 5 11 1989 3 NL M 33 203
## 2259 16462 9 4 1989 3 NL M 34 208
## 2260 16835 12 5 1989 3 NL F 33 161
## 2261 18780 6 14 1991 3 NL M 30 126
## 2262 18876 7 13 1991 3 NL M 32 71
## 2263 18975 8 8 1991 3 NL <NA> NA NA
## 2264 19263 11 14 1991 3 NL F NA NA
## 2265 19500 12 8 1991 3 NL F 35 166
## 2266 19593 1 9 1992 3 NL F 32 166
## 2267 19681 2 7 1992 3 NL F 35 174
## 2268 20051 5 31 1992 3 NL F 30 70
## 2269 20054 5 31 1992 3 NL M 29 66
## 2270 20055 5 31 1992 3 NL F 29 75
## 2271 20743 3 18 1993 3 NL M 32 86
## 2272 20746 3 18 1993 3 NL F 38 93
## 2273 20806 4 24 1993 3 NL F 30 90
## 2274 20808 4 24 1993 3 NL F 31 83
## 2275 20865 5 23 1993 3 NL M 30 62
## 2276 20940 6 19 1993 3 NL M 30 41
## 2277 21129 9 17 1993 3 NL M 35 137
## 2278 21180 10 16 1993 3 NL M NA 148
## 2279 21184 10 16 1993 3 NL M 32 144
## 2280 21247 11 14 1993 3 NL M 35 150
## 2281 21299 12 15 1993 3 NL M 32 161
## 2282 21345 2 2 1994 3 NL M 32 165
## 2283 21406 2 21 1994 3 NL M 35 171
## 2284 21408 2 21 1994 3 NL M 35 170
## 2285 21462 3 12 1994 3 NL M 35 NA
## 2286 21527 4 11 1994 3 NL M 34 180
## 2287 21735 8 18 1994 3 NL M 35 183
## 2288 30501 3 5 2000 3 NL F 32 171
## 2289 5 7 16 1977 3 DM M 35 NA
## 2290 13 7 16 1977 3 DM M 35 NA
## 2291 63 8 19 1977 3 DM M 35 40
## 2292 221 9 13 1977 3 DM <NA> NA NA
## 2293 303 10 17 1977 3 DM M 36 31
## 2294 315 10 17 1977 3 DM M 36 39
## 2295 1279 9 4 1978 3 DM M NA NA
## 2296 2341 1 16 1980 3 DM F 36 44
## 2297 2462 2 25 1980 3 DM M 35 48
## 2298 3013 5 25 1980 3 DM F 35 43
## 2299 3458 11 9 1980 3 DM M 37 45
## 2300 3460 11 9 1980 3 DM M 36 48
## 2301 3744 1 12 1981 3 DM F 36 46
## 2302 3745 1 12 1981 3 DM F 37 40
## 2303 3961 3 9 1981 3 DM F 39 58
## 2304 3967 3 9 1981 3 DM M 35 45
## 2305 6667 10 23 1982 3 DM M 37 43
## 2306 6779 10 23 1982 3 DM F 37 40
## 2307 7267 1 13 1983 3 DM M 37 39
## 2308 7278 1 13 1983 3 DM F 38 42
## 2309 7280 1 13 1983 3 DM F 36 NA
## 2310 7289 1 13 1983 3 DM M 36 43
## 2311 7299 1 13 1983 3 DM M 37 47
## 2312 7315 1 13 1983 3 DM M 37 43
## 2313 7624 3 15 1983 3 DM F 35 48
## 2314 7892 5 15 1983 3 DM F 38 46
## 2315 8532 10 16 1983 3 DM F 34 42
## 2316 8673 11 13 1983 3 DM F NA NA
## 2317 8894 2 5 1984 3 DM F 36 37
## 2318 9135 5 13 1984 3 DM M 36 27
## 2319 9161 5 13 1984 3 DM F 34 45
## 2320 9577 9 30 1984 3 DM F 35 34
## 2321 9601 9 30 1984 3 DM M 36 35
## 2322 9904 1 20 1985 3 DM M 37 42
## 2323 9987 2 17 1985 3 DM M 34 44
## 2324 10095 3 17 1985 3 DM M 36 48
## 2325 10351 4 21 1985 3 DM F 36 43
## 2326 10356 4 21 1985 3 DM M 36 44
## 2327 10437 5 24 1985 3 DM F 36 42
## 2328 10523 6 16 1985 3 DM F 36 47
## 2329 10578 7 24 1985 3 DM M 35 24
## 2330 10584 7 24 1985 3 DM F 37 38
## 2331 10624 7 24 1985 3 DM F 34 21
## 2332 10709 8 20 1985 3 DM F 35 49
## 2333 10779 9 22 1985 3 DM F 38 46
## 2334 10895 10 13 1985 3 DM F 36 47
## 2335 10905 10 13 1985 3 DM <NA> 36 32
## 2336 10952 10 13 1985 3 DM M 35 32
## 2337 13771 11 22 1987 3 DM F 35 41
## 2338 13976 1 24 1988 3 DM F 36 40
## 2339 14171 2 22 1988 3 DM F 36 39
## 2340 14269 3 21 1988 3 DM F 37 39
## 2341 14300 3 21 1988 3 DM F 37 42
## 2342 18034 11 11 1990 3 DM M 36 38
## 2343 18185 12 16 1990 3 DM M 37 45
## 2344 18188 12 16 1990 3 DM F 37 38
## 2345 18291 1 12 1991 3 DM M 35 40
## 2346 18421 2 17 1991 3 DM F 37 40
## 2347 18431 2 17 1991 3 DM M 38 47
## 2348 18558 3 14 1991 3 DM M 36 39
## 2349 18560 3 14 1991 3 DM M 37 51
## 2350 18620 4 21 1991 3 DM M 37 50
## 2351 18648 4 21 1991 3 DM F 36 NA
## 2352 18694 5 14 1991 3 DM M 35 22
## 2353 18715 5 14 1991 3 DM F 36 46
## 2354 18798 6 14 1991 3 DM F 35 NA
## 2355 21124 9 17 1993 3 DM M 37 50
## 2356 21126 9 17 1993 3 DM F 38 52
## 2357 21127 9 17 1993 3 DM M 38 51
## 2358 22082 2 5 1995 3 DM F 35 41
## 2359 22140 3 5 1995 3 DM F 37 42
## 2360 22207 4 2 1995 3 DM M 36 46
## 2361 22418 6 28 1995 3 DM F 36 40
## 2362 23174 12 22 1995 3 DM <NA> NA NA
## 2363 24165 6 14 1996 3 DM <NA> NA NA
## 2364 24757 11 17 1996 3 DM M 35 39
## 2365 24900 12 19 1996 3 DM M 35 40
## 2366 25095 2 9 1997 3 DM M 35 47
## 2367 25117 2 9 1997 3 DM F 36 39
## 2368 25154 2 9 1997 3 DM M 38 51
## 2369 25386 3 16 1997 3 DM M 35 46
## 2370 25400 3 16 1997 3 DM F 36 36
## 2371 25659 4 13 1997 3 DM M 35 48
## 2372 25917 5 11 1997 3 DM M 36 45
## 2373 26023 6 9 1997 3 DM M 34 46
## 2374 26502 7 9 1997 3 DM M 35 46
## 2375 27649 3 2 1998 3 DM F 36 NA
## 2376 29239 2 21 1999 3 DM M 37 48
## 2377 33117 11 18 2001 3 DM M 36 52
## 2378 33129 11 18 2001 3 DM F 35 42
## 2379 33417 2 9 2002 3 DM M 36 48
## 2380 33419 2 9 2002 3 DM M 37 54
## 2381 33423 2 9 2002 3 DM M 36 49
## 2382 33424 2 9 2002 3 DM F 36 47
## 2383 33426 2 9 2002 3 DM M 37 52
## 2384 33435 2 9 2002 3 DM M 37 52
## 2385 33646 3 14 2002 3 DM F 36 50
## 2386 33652 3 14 2002 3 DM M 36 51
## 2387 33848 4 17 2002 3 DM M 36 50
## 2388 33849 4 17 2002 3 DM F 36 43
## 2389 34050 5 16 2002 3 DM F 36 48
## 2390 34060 5 16 2002 3 DM M 36 55
## 2391 34067 5 16 2002 3 DM F 36 50
## 2392 34068 5 16 2002 3 DM M 37 48
## 2393 34290 6 16 2002 3 DM F 36 44
## 2394 34297 6 16 2002 3 DM M 36 53
## 2395 34533 7 14 2002 3 DM M 35 54
## 2396 498 12 11 1977 3 PF M 16 7
## 2397 520 1 8 1978 3 PF M 15 7
## 2398 672 3 11 1978 3 PF M 15 8
## 2399 1275 9 4 1978 3 PF F 17 7
## 2400 1366 10 8 1978 3 PF F 15 NA
## 2401 1380 10 8 1978 3 PF F 16 6
## 2402 2061 9 23 1979 3 PF F 15 7
## 2403 2117 10 25 1979 3 PF M 20 7
## 2404 2164 11 17 1979 3 PF M 14 7
## 2405 2179 11 17 1979 3 PF F 14 8
## 2406 2393 1 16 1980 3 PF F 15 7
## 2407 2503 2 25 1980 3 PF M 15 7
## 2408 2506 2 25 1980 3 PF F 15 5
## 2409 2533 2 25 1980 3 PF M 14 8
## 2410 2548 3 9 1980 3 PF F NA 6
## 2411 2583 3 9 1980 3 PF M NA 8
## 2412 2595 3 9 1980 3 PF M NA 8
## 2413 2636 3 9 1980 3 PF M NA 7
## 2414 2800 3 22 1980 3 PF M NA 8
## 2415 2810 3 22 1980 3 PF M NA 8
## 2416 2881 4 18 1980 3 PF M NA 8
## 2417 2990 5 18 1980 3 PF F 15 7
## 2418 3222 8 14 1980 3 PF M 16 10
## 2419 3228 8 14 1980 3 PF F 16 10
## 2420 3298 9 8 1980 3 PF M 16 10
## 2421 3323 9 8 1980 3 PF F 15 6
## 2422 3382 10 12 1980 3 PF M 16 7
## 2423 3506 11 9 1980 3 PF M 15 6
## 2424 3538 11 9 1980 3 PF F 15 7
## 2425 3558 12 15 1980 3 PF M 15 7
## 2426 3982 3 9 1981 3 PF F 16 6
## 2427 4002 3 9 1981 3 PF F 16 7
## 2428 4024 4 5 1981 3 PF M NA 7
## 2429 4052 4 5 1981 3 PF F 15 4
## 2430 4175 4 5 1981 3 PF F NA 8
## 2431 4455 5 4 1981 3 PF M 15 7
## 2432 4686 7 8 1981 3 PF M 16 6
## 2433 5021 11 23 1981 3 PF F 16 6
## 2434 5165 1 1 1982 3 PF M 15 6
## 2435 5280 1 25 1982 3 PF M 14 7
## 2436 5300 1 25 1982 3 PF F 15 7
## 2437 5397 2 23 1982 3 PF M 16 8
## 2438 5435 2 23 1982 3 PF F 16 8
## 2439 5650 3 30 1982 3 PF F 16 8
## 2440 5915 5 22 1982 3 PF F 15 7
## 2441 5988 6 28 1982 3 PF M 16 7
## 2442 6030 6 28 1982 3 PF M 17 8
## 2443 6177 7 25 1982 3 PF F NA 8
## 2444 6183 7 25 1982 3 PF F NA 6
## 2445 6195 7 25 1982 3 PF M NA 8
## 2446 6205 7 25 1982 3 PF M NA 8
## 2447 6458 8 16 1982 3 PF M 16 8
## 2448 6462 8 16 1982 3 PF M 16 9
## 2449 6485 8 16 1982 3 PF M 16 7
## 2450 6577 9 18 1982 3 PF M 16 8
## 2451 6700 10 23 1982 3 PF F 16 7
## 2452 6754 10 23 1982 3 PF F 16 5
## 2453 6772 10 23 1982 3 PF F 16 6
## 2454 7084 11 22 1982 3 PF F 16 4
## 2455 7124 11 22 1982 3 PF M 15 6
## 2456 7275 1 13 1983 3 PF M 15 5
## 2457 7421 2 27 1983 3 PF M 16 7
## 2458 7549 3 15 1983 3 PF M 16 6
## 2459 7599 3 15 1983 3 PF M 16 6
## 2460 7603 3 15 1983 3 PF F 15 5
## 2461 7718 4 17 1983 3 PF F 15 5
## 2462 7736 4 17 1983 3 PF M 16 8
## 2463 7751 4 17 1983 3 PF M 16 7
## 2464 7767 4 17 1983 3 PF M 15 6
## 2465 7769 4 17 1983 3 PF M 17 9
## 2466 7789 4 17 1983 3 PF F 16 6
## 2467 7906 5 15 1983 3 PF M 16 9
## 2468 7909 5 15 1983 3 PF F 15 8
## 2469 8007 6 18 1983 3 PF M 15 7
## 2470 8013 6 18 1983 3 PF M 16 6
## 2471 8025 6 18 1983 3 PF F 16 7
## 2472 8037 6 18 1983 3 PF M 17 9
## 2473 8102 7 16 1983 3 PF M 16 9
## 2474 8128 7 17 1983 3 PF F 16 7
## 2475 8230 8 16 1983 3 PF F 16 7
## 2476 8257 8 16 1983 3 PF M 16 10
## 2477 17053 1 30 1990 3 PF M 17 7
## 2478 17179 2 25 1990 3 PF M 15 7
## 2479 17311 3 30 1990 3 PF F 16 7
## 2480 17346 3 30 1990 3 PF F 16 7
## 2481 17452 4 26 1990 3 PF M 16 7
## 2482 17567 5 25 1990 3 PF F 15 7
## 2483 17613 6 22 1990 3 PF M 15 7
## 2484 17623 6 22 1990 3 PF F 16 8
## 2485 17637 6 22 1990 3 PF M 16 8
## 2486 17726 7 22 1990 3 PF M 15 8
## 2487 17781 8 17 1990 3 PF M 16 8
## 2488 17793 8 17 1990 3 PF F 15 7
## 2489 17797 8 17 1990 3 PF M 15 7
## 2490 18044 11 11 1990 3 PF F 14 7
## 2491 18139 12 16 1990 3 PF F 15 7
## 2492 18721 5 14 1991 3 PF F 16 9
## 2493 19053 9 10 1991 3 PF F 14 8
## 2494 19171 10 11 1991 3 PF F 15 8
## 2495 19281 11 14 1991 3 PF F 15 7
## 2496 19497 12 8 1991 3 PF F 15 7
## 2497 19977 5 3 1992 3 PF M 15 9
## 2498 20143 7 4 1992 3 PF F 15 8
## 2499 22752 9 24 1995 3 PF M 21 9
## 2500 23283 1 28 1996 3 PF M 15 5
## 2501 23291 1 28 1996 3 PF M 15 9
## 2502 23294 1 28 1996 3 PF F 16 9
## 2503 23616 3 24 1996 3 PF F 16 8
## 2504 23790 4 15 1996 3 PF M 15 7
## 2505 23804 4 15 1996 3 PF M 15 8
## 2506 23818 4 15 1996 3 PF M 16 8
## 2507 23862 4 15 1996 3 PF F 17 8
## 2508 23978 5 24 1996 3 PF M 15 9
## 2509 24105 6 14 1996 3 PF M 16 9
## 2510 24123 6 14 1996 3 PF M 16 7
## 2511 24624 10 13 1996 3 PF M 16 7
## 2512 24769 11 17 1996 3 PF M 15 7
## 2513 25632 4 13 1997 3 PF M 15 9
## 2514 25959 6 9 1997 3 PF M 15 7
## 2515 26010 6 9 1997 3 PF M 15 9
## 2516 26310 7 9 1997 3 PF M 15 9
## 2517 26516 7 9 1997 3 PF M 16 7
## 2518 26763 7 30 1997 3 PF M 16 8
## 2519 32483 8 26 2001 3 PF M 16 NA
## 2520 32896 10 14 2001 3 PF M 14 7
## 2521 33123 11 18 2001 3 PF M 15 7
## 2522 33429 2 9 2002 3 PF M 15 8
## 2523 33647 3 14 2002 3 PF M 9 8
## 2524 34057 5 16 2002 3 PF F 15 9
## 2525 2140 11 17 1979 3 PE F 19 24
## 2526 2148 11 17 1979 3 PE M 19 17
## 2527 3986 3 9 1981 3 PE M 19 18
## 2528 5269 1 25 1982 3 PE F 19 30
## 2529 5386 2 23 1982 3 PE F 20 19
## 2530 5918 5 22 1982 3 PE M 18 23
## 2531 6157 7 25 1982 3 PE F NA 16
## 2532 6432 8 16 1982 3 PE F 19 16
## 2533 6537 9 18 1982 3 PE M 20 19
## 2534 7367 2 27 1983 3 PE M 21 20
## 2535 7716 4 17 1983 3 PE M 20 22
## 2536 9421 8 1 1984 3 PE M 20 21
## 2537 9864 1 20 1985 3 PE M 18 16
## 2538 9883 1 20 1985 3 PE F 20 20
## 2539 10087 3 17 1985 3 PE F 20 26
## 2540 10097 3 17 1985 3 PE M 19 18
## 2541 11164 12 8 1985 3 PE F 20 26
## 2542 11337 3 9 1986 3 PE F 20 22
## 2543 13582 10 25 1987 3 PE M 22 20
## 2544 13592 10 25 1987 3 PE M 22 23
## 2545 13751 11 22 1987 3 PE F 21 23
## 2546 13817 11 22 1987 3 PE M 20 23
## 2547 13834 11 22 1987 3 PE M 20 22
## 2548 13918 1 24 1988 3 PE F 20 22
## 2549 13934 1 24 1988 3 PE M 22 22
## 2550 14124 2 22 1988 3 PE M 21 21
## 2551 14141 2 22 1988 3 PE F 21 21
## 2552 14410 4 19 1988 3 PE F 21 30
## 2553 14413 4 19 1988 3 PE M 20 23
## 2554 14439 4 19 1988 3 PE M 21 27
## 2555 14596 6 12 1988 3 PE F 21 25
## 2556 14933 9 12 1988 3 PE F 21 26
## 2557 15025 10 9 1988 3 PE M 21 23
## 2558 15407 1 11 1989 3 PE F 21 25
## 2559 15606 2 5 1989 3 PE M 21 23
## 2560 15619 2 5 1989 3 PE F 21 26
## 2561 15809 3 14 1989 3 PE F 21 28
## 2562 15814 3 14 1989 3 PE M 21 25
## 2563 15842 4 1 1989 3 PE F 22 26
## 2564 16063 5 11 1989 3 PE F 22 32
## 2565 17187 2 25 1990 3 PE M 21 21
## 2566 17349 3 30 1990 3 PE M 20 17
## 2567 19071 9 10 1991 3 PE M 21 23
## 2568 19262 11 14 1991 3 PE M 19 24
## 2569 19475 12 8 1991 3 PE F 20 22
## 2570 19594 1 9 1992 3 PE F 17 20
## 2571 19679 2 7 1992 3 PE F 18 20
## 2572 19692 2 7 1992 3 PE M 20 23
## 2573 19797 3 7 1992 3 PE F 20 21
## 2574 23267 1 28 1996 3 PE M 20 19
## 2575 23412 2 25 1996 3 PE F 19 18
## 2576 23419 2 25 1996 3 PE M 21 21
## 2577 23604 3 24 1996 3 PE M 21 20
## 2578 23735 4 15 1996 3 PE F 20 19
## 2579 23773 4 15 1996 3 PE M 21 19
## 2580 24126 6 14 1996 3 PE F 20 23
## 2581 24721 11 17 1996 3 PE M 19 23
## 2582 25306 3 16 1997 3 PE M 21 25
## 2583 25314 3 16 1997 3 PE F 21 20
## 2584 25599 4 13 1997 3 PE F 20 23
## 2585 31560 11 26 2000 3 PE M 21 20
## 2586 31564 11 26 2000 3 PE M 20 23
## 2587 32895 10 14 2001 3 PE F 21 22
## 2588 33121 11 18 2001 3 PE F 22 24
## 2589 33428 2 9 2002 3 PE F 21 24
## 2590 35490 12 31 2002 3 PE F 19 19
## 2591 17 7 16 1977 3 DS F 48 NA
## 2592 73 8 19 1977 3 DS F 44 NA
## 2593 241 9 13 1977 3 DS <NA> NA NA
## 2594 2461 2 25 1980 3 DS M 52 147
## 2595 2463 2 25 1980 3 DS M 52 155
## 2596 2464 2 25 1980 3 DS M 50 129
## 2597 3011 5 25 1980 3 DS F 46 115
## 2598 3012 5 25 1980 3 DS F 46 78
## 2599 3014 5 25 1980 3 DS F 48 NA
## 2600 3015 5 25 1980 3 DS M 50 123
## 2601 3016 5 25 1980 3 DS F 52 125
## 2602 3017 5 25 1980 3 DS M 51 91
## 2603 3742 1 12 1981 3 DS F 51 136
## 2604 3743 1 12 1981 3 DS M 48 121
## 2605 3952 3 9 1981 3 DS M 51 151
## 2606 3964 3 9 1981 3 DS F 50 124
## 2607 3970 3 9 1981 3 DS F 54 128
## 2608 6150 7 25 1982 3 DS M NA 164
## 2609 217 9 13 1977 3 PP F 19 15
## 2610 1257 9 4 1978 3 PP F 21 13
## 2611 1352 10 8 1978 3 PP F 22 NA
## 2612 6155 7 25 1982 3 PP F NA 15
## 2613 6434 8 16 1982 3 PP M 21 12
## 2614 6443 8 16 1982 3 PP F 21 14
## 2615 6524 9 18 1982 3 PP M 21 14
## 2616 8135 7 17 1983 3 PP F 22 13
## 2617 8216 8 16 1983 3 PP F 22 14
## 2618 8350 9 11 1983 3 PP F 22 13
## 2619 8645 11 13 1983 3 PP F 22 13
## 2620 9024 4 10 1984 3 PP F 23 14
## 2621 9245 5 28 1984 3 PP M 21 19
## 2622 9249 5 28 1984 3 PP F 22 23
## 2623 9278 5 28 1984 3 PP M 23 20
## 2624 9327 7 4 1984 3 PP M 23 18
## 2625 9357 7 4 1984 3 PP F 22 14
## 2626 9443 8 1 1984 3 PP F 23 17
## 2627 10259 4 21 1985 3 PP M 23 21
## 2628 10315 4 21 1985 3 PP F 22 12
## 2629 10412 5 24 1985 3 PP M 21 12
## 2630 10433 5 24 1985 3 PP F 22 14
## 2631 10495 6 16 1985 3 PP M 18 19
## 2632 10510 6 16 1985 3 PP F 22 19
## 2633 10512 6 16 1985 3 PP M 22 19
## 2634 10580 7 24 1985 3 PP F 20 14
## 2635 10591 7 24 1985 3 PP F 21 15
## 2636 10616 7 24 1985 3 PP M 20 16
## 2637 10681 8 20 1985 3 PP F 22 14
## 2638 10712 8 20 1985 3 PP M 25 28
## 2639 10726 8 20 1985 3 PP M 20 17
## 2640 10822 9 22 1985 3 PP F 22 NA
## 2641 10828 9 22 1985 3 PP F 22 16
## 2642 11016 11 17 1985 3 PP F 21 12
## 2643 11204 12 8 1985 3 PP F 22 16
## 2644 11285 3 9 1986 3 PP <NA> NA NA
## 2645 11423 4 13 1986 3 PP F 22 19
## 2646 11433 4 13 1986 3 PP M 22 17
## 2647 11512 5 11 1986 3 PP F 23 19
## 2648 11587 6 5 1986 3 PP F 22 18
## 2649 11590 6 5 1986 3 PP F 22 14
## 2650 11601 6 5 1986 3 PP M 21 16
## 2651 11623 6 5 1986 3 PP F 22 14
## 2652 11712 7 4 1986 3 PP F 21 16
## 2653 11727 7 4 1986 3 PP F 22 20
## 2654 11728 7 4 1986 3 PP F 22 16
## 2655 11773 8 10 1986 3 PP F 23 NA
## 2656 11780 8 10 1986 3 PP F 23 18
## 2657 11785 8 10 1986 3 PP F 23 18
## 2658 11850 9 7 1986 3 PP F 20 21
## 2659 11865 9 7 1986 3 PP F 23 17
## 2660 11881 9 7 1986 3 PP F 22 17
## 2661 12693 4 26 1987 3 PP F 20 18
## 2662 12711 4 26 1987 3 PP M 19 19
## 2663 12716 4 26 1987 3 PP F 24 17
## 2664 12840 5 28 1987 3 PP M 21 19
## 2665 12963 7 1 1987 3 PP F 23 24
## 2666 12974 7 1 1987 3 PP F 23 23
## 2667 13026 7 1 1987 3 PP M 22 17
## 2668 13115 7 26 1987 3 PP M NA 20
## 2669 13163 7 26 1987 3 PP F NA 19
## 2670 13173 7 26 1987 3 PP F NA 11
## 2671 13179 7 26 1987 3 PP M 22 11
## 2672 13272 8 26 1987 3 PP F 22 20
## 2673 13280 8 26 1987 3 PP F 21 14
## 2674 13306 8 26 1987 3 PP F 24 20
## 2675 13317 8 26 1987 3 PP F 21 15
## 2676 13339 8 26 1987 3 PP M 22 16
## 2677 13416 9 27 1987 3 PP F 22 19
## 2678 13421 9 27 1987 3 PP M 23 21
## 2679 13485 9 27 1987 3 PP M 23 16
## 2680 14267 3 21 1988 3 PP M 22 20
## 2681 14412 4 19 1988 3 PP M 22 21
## 2682 14449 4 19 1988 3 PP M 23 22
## 2683 14490 5 15 1988 3 PP M 24 22
## 2684 14511 5 15 1988 3 PP F 24 24
## 2685 14526 5 15 1988 3 PP M 21 19
## 2686 14601 6 12 1988 3 PP F 22 23
## 2687 14604 6 12 1988 3 PP M 23 22
## 2688 14650 6 12 1988 3 PP F 24 13
## 2689 14716 7 15 1988 3 PP F 24 22
## 2690 14732 7 15 1988 3 PP M 24 18
## 2691 14792 8 10 1988 3 PP F 22 18
## 2692 14808 8 10 1988 3 PP F 24 12
## 2693 14821 8 10 1988 3 PP F 22 12
## 2694 14824 8 10 1988 3 PP M 22 9
## 2695 14827 8 10 1988 3 PP <NA> NA NA
## 2696 14838 8 10 1988 3 PP M 24 21
## 2697 14850 8 10 1988 3 PP M 22 11
## 2698 14888 9 12 1988 3 PP M 22 16
## 2699 14982 10 9 1988 3 PP M 22 15
## 2700 15841 4 1 1989 3 PP M 22 18
## 2701 15866 4 1 1989 3 PP M 23 22
## 2702 15868 4 1 1989 3 PP M 25 24
## 2703 16303 7 4 1989 3 PP M NA NA
## 2704 16367 7 30 1989 3 PP M 20 17
## 2705 16388 7 30 1989 3 PP F 23 18
## 2706 16464 9 4 1989 3 PP F 21 16
## 2707 16482 9 4 1989 3 PP M 22 16
## 2708 16524 10 7 1989 3 PP M 22 18
## 2709 16707 11 5 1989 3 PP M 20 16
## 2710 16720 11 5 1989 3 PP M 22 17
## 2711 17439 4 26 1990 3 PP F 22 18
## 2712 17561 5 25 1990 3 PP F 21 19
## 2713 17644 6 22 1990 3 PP F 22 18
## 2714 17699 7 22 1990 3 PP M 24 18
## 2715 17771 8 17 1990 3 PP M 22 20
## 2716 17848 9 25 1990 3 PP M NA 17
## 2717 17942 10 16 1990 3 PP F 22 13
## 2718 18601 4 21 1991 3 PP M 23 23
## 2719 18685 5 14 1991 3 PP M 20 24
## 2720 18723 5 14 1991 3 PP F 20 16
## 2721 18725 5 14 1991 3 PP F 21 28
## 2722 18783 6 14 1991 3 PP <NA> NA NA
## 2723 18899 7 13 1991 3 PP M NA 19
## 2724 18901 7 13 1991 3 PP F 19 19
## 2725 18965 8 8 1991 3 PP F 22 14
## 2726 18969 8 8 1991 3 PP <NA> NA NA
## 2727 19001 8 8 1991 3 PP F 21 10
## 2728 19009 8 8 1991 3 PP F 22 18
## 2729 19050 9 10 1991 3 PP F 24 19
## 2730 19057 9 10 1991 3 PP F 22 14
## 2731 19147 10 11 1991 3 PP F 16 28
## 2732 19148 10 11 1991 3 PP F 16 14
## 2733 19177 10 11 1991 3 PP F 21 16
## 2734 19178 10 11 1991 3 PP F 21 14
## 2735 19276 11 14 1991 3 PP F 26 27
## 2736 19596 1 9 1992 3 PP M 20 17
## 2737 19695 2 7 1992 3 PP M 22 17
## 2738 19701 2 7 1992 3 PP F 21 12
## 2739 19763 3 7 1992 3 PP M 23 19
## 2740 19810 3 7 1992 3 PP F 22 17
## 2741 19930 4 5 1992 3 PP F 22 20
## 2742 19932 4 5 1992 3 PP F 22 17
## 2743 20001 5 3 1992 3 PP F 23 26
## 2744 20077 5 31 1992 3 PP F 16 22
## 2745 20117 7 4 1992 3 PP M 21 18
## 2746 20147 7 4 1992 3 PP F 21 22
## 2747 20216 7 31 1992 3 PP F 21 17
## 2748 20223 7 31 1992 3 PP M 22 14
## 2749 20224 7 31 1992 3 PP <NA> NA NA
## 2750 20232 7 31 1992 3 PP F 21 13
## 2751 20235 7 31 1992 3 PP M 21 12
## 2752 20291 8 30 1992 3 PP M 21 18
## 2753 20299 8 30 1992 3 PP <NA> NA NA
## 2754 20303 8 30 1992 3 PP <NA> NA NA
## 2755 20307 8 30 1992 3 PP F 22 22
## 2756 20324 8 30 1992 3 PP M 21 18
## 2757 20378 9 27 1992 3 PP M 22 17
## 2758 20385 9 27 1992 3 PP F 22 22
## 2759 20477 10 19 1992 3 PP M 21 18
## 2760 20819 4 24 1993 3 PP F 25 18
## 2761 20867 5 23 1993 3 PP M 26 22
## 2762 20931 6 19 1993 3 PP F 22 22
## 2763 20936 6 19 1993 3 PP F 21 11
## 2764 20943 6 19 1993 3 PP M 21 18
## 2765 20956 6 19 1993 3 PP F 20 10
## 2766 21004 7 15 1993 3 PP F 21 18
## 2767 21065 8 20 1993 3 PP F 23 21
## 2768 21128 9 17 1993 3 PP F 17 16
## 2769 21133 9 17 1993 3 PP F NA NA
## 2770 21205 10 16 1993 3 PP F 20 12
## 2771 21526 4 11 1994 3 PP M 21 19
## 2772 21583 5 19 1994 3 PP F 26 21
## 2773 21642 6 15 1994 3 PP M 22 18
## 2774 21648 6 15 1994 3 PP M 21 19
## 2775 21683 7 9 1994 3 PP M 23 20
## 2776 21684 7 9 1994 3 PP F NA NA
## 2777 21732 8 18 1994 3 PP M 22 11
## 2778 21733 8 18 1994 3 PP F 24 24
## 2779 21742 8 18 1994 3 PP M 22 11
## 2780 21781 9 7 1994 3 PP F 24 16
## 2781 21784 9 7 1994 3 PP F 23 20
## 2782 21795 9 7 1994 3 PP M 22 16
## 2783 21845 10 13 1994 3 PP F 22 19
## 2784 21847 10 13 1994 3 PP F 23 14
## 2785 21859 10 13 1994 3 PP F 22 14
## 2786 22194 4 2 1995 3 PP M 22 21
## 2787 22255 4 30 1995 3 PP M 22 20
## 2788 22257 4 30 1995 3 PP F 24 22
## 2789 22320 6 8 1995 3 PP F 21 9
## 2790 22343 6 8 1995 3 PP F 23 22
## 2791 22393 6 28 1995 3 PP F 23 21
## 2792 22401 6 28 1995 3 PP M 23 19
## 2793 22408 6 28 1995 3 PP F 22 17
## 2794 22428 6 28 1995 3 PP F 23 24
## 2795 22500 7 21 1995 3 PP M 13 14
## 2796 22517 7 21 1995 3 PP M 21 20
## 2797 22521 7 21 1995 3 PP F 22 17
## 2798 22523 7 21 1995 3 PP F 21 12
## 2799 22524 7 21 1995 3 PP F 21 20
## 2800 22534 7 21 1995 3 PP M 20 13
## 2801 22585 8 27 1995 3 PP F 23 17
## 2802 22587 8 27 1995 3 PP <NA> NA NA
## 2803 22592 8 27 1995 3 PP F 23 19
## 2804 22598 8 27 1995 3 PP F 23 14
## 2805 22604 8 27 1995 3 PP F 23 20
## 2806 22617 8 27 1995 3 PP M 23 16
## 2807 22622 8 27 1995 3 PP F 23 18
## 2808 22627 8 27 1995 3 PP M 22 18
## 2809 22633 8 27 1995 3 PP F 22 11
## 2810 22636 8 27 1995 3 PP F 21 14
## 2811 22641 8 27 1995 3 PP M 22 12
## 2812 22643 8 27 1995 3 PP F 23 19
## 2813 22648 8 27 1995 3 PP M 22 17
## 2814 22651 8 27 1995 3 PP F 22 17
## 2815 22658 8 27 1995 3 PP F 23 17
## 2816 22738 9 24 1995 3 PP F 19 17
## 2817 22743 9 24 1995 3 PP F 21 17
## 2818 22746 9 24 1995 3 PP M 21 15
## 2819 22749 9 24 1995 3 PP M 21 17
## 2820 22755 9 24 1995 3 PP M 22 26
## 2821 22757 9 24 1995 3 PP F 21 22
## 2822 22766 9 24 1995 3 PP F 20 18
## 2823 22774 9 24 1995 3 PP M 20 14
## 2824 22778 9 24 1995 3 PP M 19 15
## 2825 22786 9 24 1995 3 PP F 21 17
## 2826 22796 9 24 1995 3 PP F 21 18
## 2827 22804 9 24 1995 3 PP F 20 15
## 2828 22807 9 24 1995 3 PP F 20 16
## 2829 22814 9 24 1995 3 PP F 21 16
## 2830 22823 9 24 1995 3 PP <NA> 18 14
## 2831 22920 10 29 1995 3 PP F 20 17
## 2832 22926 10 29 1995 3 PP M 20 16
## 2833 22943 10 29 1995 3 PP F 21 14
## 2834 22957 10 29 1995 3 PP F 23 18
## 2835 22959 10 29 1995 3 PP F 22 15
## 2836 22964 10 29 1995 3 PP M 21 15
## 2837 22965 10 29 1995 3 PP F 22 16
## 2838 22974 10 29 1995 3 PP F 22 19
## 2839 22979 10 29 1995 3 PP F 21 15
## 2840 22987 10 29 1995 3 PP M 23 15
## 2841 22988 10 29 1995 3 PP F 21 14
## 2842 23054 12 3 1995 3 PP F 21 16
## 2843 23081 12 3 1995 3 PP F 20 14
## 2844 23083 12 3 1995 3 PP M 22 15
## 2845 23091 12 3 1995 3 PP F 22 17
## 2846 23204 12 22 1995 3 PP F 21 12
## 2847 23206 12 22 1995 3 PP <NA> 20 14
## 2848 23287 1 28 1996 3 PP F 24 18
## 2849 23410 2 25 1996 3 PP F 21 18
## 2850 23442 2 25 1996 3 PP M 21 16
## 2851 23475 2 25 1996 3 PP F 22 15
## 2852 23623 3 24 1996 3 PP M 22 18
## 2853 23625 3 24 1996 3 PP M 24 22
## 2854 23634 3 24 1996 3 PP F 22 15
## 2855 23732 4 15 1996 3 PP M 22 20
## 2856 23741 4 15 1996 3 PP M 23 20
## 2857 23746 4 15 1996 3 PP M 24 25
## 2858 23748 4 15 1996 3 PP M 24 22
## 2859 23768 4 15 1996 3 PP F 21 15
## 2860 23787 4 15 1996 3 PP M 24 23
## 2861 23791 4 15 1996 3 PP F 23 24
## 2862 23812 4 15 1996 3 PP M 23 42
## 2863 23839 4 15 1996 3 PP <NA> 19 18
## 2864 23864 4 15 1996 3 PP F 21 16
## 2865 23877 4 15 1996 3 PP M 21 18
## 2866 23951 5 24 1996 3 PP M 22 20
## 2867 23967 5 24 1996 3 PP M 23 20
## 2868 23974 5 24 1996 3 PP F 23 26
## 2869 24087 6 14 1996 3 PP M 23 19
## 2870 24116 6 14 1996 3 PP M 23 14
## 2871 24118 6 14 1996 3 PP M 24 21
## 2872 24119 6 14 1996 3 PP F 24 21
## 2873 24142 6 14 1996 3 PP M 24 22
## 2874 24233 7 21 1996 3 PP F 24 20
## 2875 24245 7 21 1996 3 PP M 23 19
## 2876 24246 7 21 1996 3 PP M 21 17
## 2877 24274 7 21 1996 3 PP M 22 18
## 2878 24276 7 21 1996 3 PP M 23 19
## 2879 24330 8 15 1996 3 PP F 22 16
## 2880 24336 8 15 1996 3 PP F 23 15
## 2881 24347 8 15 1996 3 PP M 24 19
## 2882 24351 8 15 1996 3 PP M 22 17
## 2883 24360 8 15 1996 3 PP F 22 15
## 2884 24362 8 15 1996 3 PP M 22 11
## 2885 24364 8 15 1996 3 PP F 23 17
## 2886 24368 8 15 1996 3 PP M 22 17
## 2887 24466 9 22 1996 3 PP F 21 17
## 2888 24492 9 22 1996 3 PP F 20 16
## 2889 24494 9 22 1996 3 PP F 20 18
## 2890 24505 9 22 1996 3 PP M 21 20
## 2891 24515 9 22 1996 3 PP M 21 17
## 2892 24605 10 13 1996 3 PP F 22 15
## 2893 24627 10 13 1996 3 PP F 23 16
## 2894 24645 10 13 1996 3 PP F 23 17
## 2895 24740 11 17 1996 3 PP F 22 15
## 2896 25296 3 16 1997 3 PP M 23 21
## 2897 25327 3 16 1997 3 PP M 23 21
## 2898 25576 4 13 1997 3 PP F 21 17
## 2899 25608 4 13 1997 3 PP F 21 18
## 2900 25629 4 13 1997 3 PP M 23 22
## 2901 25648 4 13 1997 3 PP F 21 16
## 2902 25674 4 13 1997 3 PP M 20 23
## 2903 25676 4 13 1997 3 PP M 23 22
## 2904 25884 5 11 1997 3 PP M 22 12
## 2905 25890 5 11 1997 3 PP M 23 23
## 2906 25903 5 11 1997 3 PP M 19 21
## 2907 25953 6 9 1997 3 PP F 22 19
## 2908 26001 6 9 1997 3 PP F 21 9
## 2909 26248 7 9 1997 3 PP F 22 15
## 2910 26300 7 9 1997 3 PP F 21 14
## 2911 26323 7 9 1997 3 PP M 21 12
## 2912 26449 7 9 1997 3 PP F 21 18
## 2913 26484 7 9 1997 3 PP M 22 15
## 2914 26674 7 30 1997 3 PP M 21 15
## 2915 26715 7 30 1997 3 PP F 21 20
## 2916 26733 7 30 1997 3 PP M 22 16
## 2917 26758 7 30 1997 3 PP F 23 14
## 2918 27814 5 3 1998 3 PP F 20 17
## 2919 27828 5 3 1998 3 PP F 21 17
## 2920 27843 5 3 1998 3 PP F 22 15
## 2921 27989 5 29 1998 3 PP F 21 17
## 2922 27994 5 29 1998 3 PP M 21 18
## 2923 27997 5 29 1998 3 PP M 21 19
## 2924 28095 6 28 1998 3 PP F 21 20
## 2925 28103 6 28 1998 3 PP M 23 11
## 2926 28258 7 19 1998 3 PP M 20 15
## 2927 28300 7 19 1998 3 PP F 21 20
## 2928 28309 7 19 1998 3 PP F 22 17
## 2929 28406 8 23 1998 3 PP F 21 17
## 2930 28409 8 23 1998 3 PP M 22 14
## 2931 28414 8 23 1998 3 PP F 21 16
## 2932 28564 9 20 1998 3 PP M 22 15
## 2933 29498 4 18 1999 3 PP F 22 16
## 2934 29631 5 16 1999 3 PP F 22 16
## 2935 29634 5 16 1999 3 PP F 22 16
## 2936 30000 11 7 1999 3 PP M 21 13
## 2937 30001 11 7 1999 3 PP M 22 15
## 2938 30112 12 6 1999 3 PP M 21 12
## 2939 30225 1 10 2000 3 PP M 22 17
## 2940 30359 2 6 2000 3 PP M 20 18
## 2941 30809 6 4 2000 3 PP M 22 20
## 2942 30993 7 2 2000 3 PP M 20 13
## 2943 30997 7 2 2000 3 PP M 20 16
## 2944 31276 8 26 2000 3 PP M 21 16
## 2945 32256 7 22 2001 3 PP F 22 17
## 2946 32264 7 22 2001 3 PP M 22 13
## 2947 32266 7 22 2001 3 PP F 22 15
## 2948 32478 8 26 2001 3 PP <NA> NA NA
## 2949 32479 8 26 2001 3 PP F 22 15
## 2950 32480 8 26 2001 3 PP F 22 15
## 2951 32481 8 26 2001 3 PP M 23 NA
## 2952 32695 9 23 2001 3 PP F 23 15
## 2953 32696 9 23 2001 3 PP F 22 14
## 2954 32702 9 23 2001 3 PP F 23 15
## 2955 32902 10 14 2001 3 PP F 22 15
## 2956 33130 11 18 2001 3 PP F 23 15
## 2957 33850 4 17 2002 3 PP M 22 21
## 2958 33858 4 17 2002 3 PP M 22 21
## 2959 33860 4 17 2002 3 PP F 22 16
## 2960 33862 4 17 2002 3 PP F 22 15
## 2961 34052 5 16 2002 3 PP M 23 21
## 2962 34053 5 16 2002 3 PP M 23 20
## 2963 34058 5 16 2002 3 PP F 23 17
## 2964 34059 5 16 2002 3 PP M 22 20
## 2965 34064 5 16 2002 3 PP F 23 18
## 2966 34291 6 16 2002 3 PP M 22 12
## 2967 34292 6 16 2002 3 PP F 22 11
## 2968 34294 6 16 2002 3 PP F 22 18
## 2969 34298 6 16 2002 3 PP F 22 16
## 2970 34536 7 14 2002 3 PP F 22 15
## 2971 34539 7 14 2002 3 PP M 20 13
## 2972 34540 7 14 2002 3 PP M 23 17
## 2973 34541 7 14 2002 3 PP F 21 18
## 2974 34544 7 14 2002 3 PP M 23 16
## 2975 34547 7 14 2002 3 PP F 21 16
## 2976 34735 9 10 2002 3 PP M 21 13
## 2977 34736 9 10 2002 3 PP F 22 18
## 2978 34737 9 10 2002 3 PP <NA> NA NA
## 2979 34876 10 6 2002 3 PP M 22 17
## 2980 34877 10 6 2002 3 PP M 21 13
## 2981 35112 11 10 2002 3 PP M 22 18
## 2982 13255 8 26 1987 3 SH F 30 78
## 2983 14097 2 22 1988 3 SH F 30 57
## 2984 14263 3 21 1988 3 SH F 32 70
## 2985 14406 4 19 1988 3 SH F 30 103
## 2986 14488 5 15 1988 3 SH F 27 108
## 2987 15088 11 6 1988 3 SH F 27 67
## 2988 15234 12 14 1988 3 SH F 31 85
## 2989 15384 1 11 1989 3 SH F 32 90
## 2990 15568 2 5 1989 3 SH F 28 80
## 2991 15787 3 14 1989 3 SH F 31 105
## 2992 15790 3 14 1989 3 SH F 31 90
## 2993 15834 3 14 1989 3 SH M 31 88
## 2994 15839 4 1 1989 3 SH F 31 101
## 2995 15912 4 1 1989 3 SH F 29 86
## 2996 16045 5 11 1989 3 SH F 29 43
## 2997 16050 5 11 1989 3 SH F 31 123
## 2998 16088 5 11 1989 3 SH F 30 42
## 2999 16158 6 4 1989 3 SH M 32 67
## 3000 16164 6 4 1989 3 SH F 33 111
## 3001 16167 6 4 1989 3 SH F 29 60
## 3002 16275 7 4 1989 3 SH F NA 105
## 3003 16308 7 4 1989 3 SH M NA 26
## 3004 16358 7 30 1989 3 SH M 25 31
## 3005 16471 9 4 1989 3 SH F 32 96
## 3006 16473 9 4 1989 3 SH M 22 16
## 3007 16532 10 7 1989 3 SH F 29 47
## 3008 16929 1 7 1990 3 SH M 31 61
## 3009 17170 2 25 1990 3 SH M 30 80
## 3010 17172 2 25 1990 3 SH F 29 67
## 3011 17300 3 30 1990 3 SH M 30 82
## 3012 17359 3 30 1990 3 SH F 31 77
## 3013 17430 4 26 1990 3 SH F 31 85
## 3014 17551 5 25 1990 3 SH F 31 98
## 3015 478 12 11 1977 3 OT <NA> NA NA
## 3016 584 2 18 1978 3 OT M NA 24
## 3017 599 2 18 1978 3 OT F 15 23
## 3018 658 3 11 1978 3 OT F 21 22
## 3019 668 3 11 1978 3 OT M 21 26
## 3020 1009 6 9 1978 3 OT F 20 29
## 3021 1256 9 4 1978 3 OT M 21 27
## 3022 1286 9 4 1978 3 OT F 20 28
## 3023 1533 12 3 1978 3 OT F 20 23
## 3024 1542 12 3 1978 3 OT M 20 28
## 3025 1585 1 29 1979 3 OT F NA 27
## 3026 1645 2 25 1979 3 OT M 21 26
## 3027 1650 2 25 1979 3 OT F 20 30
## 3028 1997 8 23 1979 3 OT M 20 28
## 3029 3459 11 9 1980 3 OT F 19 20
## 3030 3461 11 9 1980 3 OT F 20 28
## 3031 3974 3 9 1981 3 OT F 20 28
## 3032 3975 3 9 1981 3 OT M 20 27
## 3033 5969 5 22 1982 3 OT F 19 24
## 3034 8236 8 16 1983 3 OT F 20 22
## 3035 9044 4 10 1984 3 OT M 21 22
## 3036 9350 7 4 1984 3 OT M 20 24
## 3037 9751 12 31 1984 3 OT M 21 28
## 3038 9765 12 31 1984 3 OT F 19 21
## 3039 10438 5 24 1985 3 OT M 20 22
## 3040 10690 8 20 1985 3 OT M 22 25
## 3041 11424 4 13 1986 3 OT M 19 15
## 3042 11521 5 11 1986 3 OT M 21 21
## 3043 11533 5 11 1986 3 OT F 17 9
## 3044 11625 6 5 1986 3 OT M 20 21
## 3045 11724 7 4 1986 3 OT M 20 30
## 3046 13124 7 26 1987 3 OT F NA 18
## 3047 13418 9 27 1987 3 OT F 20 23
## 3048 13571 10 25 1987 3 OT M 21 27
## 3049 13753 11 22 1987 3 OT F 21 24
## 3050 13993 1 24 1988 3 OT M 23 24
## 3051 14103 2 22 1988 3 OT M 20 27
## 3052 14286 3 21 1988 3 OT M 21 29
## 3053 14590 6 12 1988 3 OT M 20 20
## 3054 15011 10 9 1988 3 OT M 21 22
## 3055 15014 10 9 1988 3 OT F 21 22
## 3056 15161 11 6 1988 3 OT M 21 24
## 3057 15251 12 14 1988 3 OT F 20 22
## 3058 15424 1 11 1989 3 OT M 22 24
## 3059 15442 1 11 1989 3 OT M 20 25
## 3060 15467 1 11 1989 3 OT F 21 23
## 3061 15638 2 5 1989 3 OT F 21 26
## 3062 15663 2 5 1989 3 OT M 21 23
## 3063 15801 3 14 1989 3 OT M 21 28
## 3064 16280 7 4 1989 3 OT M NA 23
## 3065 16370 7 30 1989 3 OT F 20 27
## 3066 16493 10 7 1989 3 OT F 21 23
## 3067 16502 10 7 1989 3 OT M 20 21
## 3068 16520 10 7 1989 3 OT M 21 22
## 3069 16672 11 5 1989 3 OT F 20 24
## 3070 16803 12 5 1989 3 OT M 21 24
## 3071 16941 1 7 1990 3 OT M 21 22
## 3072 17064 1 30 1990 3 OT F 21 22
## 3073 17173 2 25 1990 3 OT F 21 23
## 3074 17184 2 25 1990 3 OT M 20 23
## 3075 17322 3 30 1990 3 OT F 20 24
## 3076 17432 4 26 1990 3 OT M 21 26
## 3077 18015 11 11 1990 3 OT M 20 21
## 3078 18021 11 11 1990 3 OT F 20 18
## 3079 18055 11 11 1990 3 OT M 21 24
## 3080 18120 12 16 1990 3 OT M 21 21
## 3081 18123 12 16 1990 3 OT F 21 20
## 3082 18135 12 16 1990 3 OT F 21 27
## 3083 18277 1 12 1991 3 OT F 20 25
## 3084 18391 2 17 1991 3 OT F 20 28
## 3085 18430 2 17 1991 3 OT F 20 24
## 3086 18542 3 14 1991 3 OT M 20 28
## 3087 18700 5 14 1991 3 OT F 18 11
## 3088 18702 5 14 1991 3 OT M 19 11
## 3089 18719 5 14 1991 3 OT F 19 11
## 3090 18857 7 13 1991 3 OT F 16 16
## 3091 19159 10 11 1991 3 OT M 21 24
## 3092 19182 10 11 1991 3 OT F 20 24
## 3093 19278 11 14 1991 3 OT M 21 35
## 3094 19483 12 8 1991 3 OT M 21 36
## 3095 19486 12 8 1991 3 OT M 22 23
## 3096 19688 2 7 1992 3 OT M 22 24
## 3097 20153 7 4 1992 3 OT M 20 16
## 3098 20388 9 27 1992 3 OT M 17 24
## 3099 20518 10 19 1992 3 OT M 19 25
## 3100 21416 2 21 1994 3 OT M 20 27
## 3101 22913 10 29 1995 3 OT F 21 25
## 3102 22915 10 29 1995 3 OT M 19 26
## 3103 23823 4 15 1996 3 OT M 21 29
## 3104 24498 9 22 1996 3 OT F 21 16
## 3105 24506 9 22 1996 3 OT F 20 19
## 3106 24600 10 13 1996 3 OT M 21 23
## 3107 24608 10 13 1996 3 OT F 22 24
## 3108 24628 10 13 1996 3 OT F 21 22
## 3109 24636 10 13 1996 3 OT M 21 28
## 3110 24747 11 17 1996 3 OT M 20 24
## 3111 24752 11 17 1996 3 OT F 22 29
## 3112 24782 11 17 1996 3 OT F 21 22
## 3113 25075 2 9 1997 3 OT M 20 23
## 3114 25093 2 9 1997 3 OT F 21 24
## 3115 25344 3 16 1997 3 OT F 21 28
## 3116 25558 4 13 1997 3 OT F 20 27
## 3117 25847 5 11 1997 3 OT F 21 31
## 3118 25886 5 11 1997 3 OT M 20 31
## 3119 25941 6 9 1997 3 OT F 20 22
## 3120 25969 6 9 1997 3 OT F 18 11
## 3121 26006 6 9 1997 3 OT M 20 21
## 3122 26239 7 9 1997 3 OT F 21 26
## 3123 27071 10 26 1997 3 OT F 20 25
## 3124 27125 10 26 1997 3 OT M 20 24
## 3125 27234 11 22 1997 3 OT M 20 23
## 3126 27934 5 29 1998 3 OT M 19 28
## 3127 27935 5 29 1998 3 OT M 21 21
## 3128 28000 5 29 1998 3 OT M 20 21
## 3129 28736 10 25 1998 3 OT F 20 24
## 3130 28741 10 25 1998 3 OT F 20 20
## 3131 28868 11 22 1998 3 OT M 20 24
## 3132 28870 11 22 1998 3 OT M 20 22
## 3133 29094 1 17 1999 3 OT M 19 27
## 3134 29235 2 21 1999 3 OT M 19 25
## 3135 29237 2 21 1999 3 OT F 20 24
## 3136 29372 3 15 1999 3 OT F 19 25
## 3137 29903 10 10 1999 3 OT M 21 14
## 3138 30220 1 10 2000 3 OT F 20 25
## 3139 30363 2 6 2000 3 OT M 21 26
## 3140 30506 3 5 2000 3 OT M 20 29
## 3141 30803 6 4 2000 3 OT M 20 32
## 3142 30990 7 2 2000 3 OT M 19 22
## 3143 31274 8 26 2000 3 OT M 19 25
## 3144 31445 9 31 2000 3 OT F 20 27
## 3145 31556 11 26 2000 3 OT M 19 25
## 3146 31671 12 23 2000 3 OT M 21 29
## 3147 31754 1 22 2001 3 OT M 21 25
## 3148 31755 1 22 2001 3 OT F 21 25
## 3149 32088 5 27 2001 3 OT F 21 25
## 3150 32089 5 27 2001 3 OT F 21 35
## 3151 32263 7 22 2001 3 OT M 21 31
## 3152 32486 8 26 2001 3 OT M 20 24
## 3153 32693 9 23 2001 3 OT M 20 21
## 3154 32694 9 23 2001 3 OT M 21 24
## 3155 32707 9 23 2001 3 OT F 21 30
## 3156 32893 10 14 2001 3 OT M 21 23
## 3157 32898 10 14 2001 3 OT M 20 22
## 3158 32899 10 14 2001 3 OT F 20 22
## 3159 32901 10 14 2001 3 OT M 21 25
## 3160 33119 11 18 2001 3 OT M 20 24
## 3161 33120 11 18 2001 3 OT F 21 22
## 3162 33122 11 18 2001 3 OT M 21 26
## 3163 33420 2 9 2002 3 OT F 21 24
## 3164 33432 2 9 2002 3 OT M 21 30
## 3165 33863 4 17 2002 3 OT M 21 31
## 3166 34535 7 14 2002 3 OT F 18 28
## 3167 34538 7 14 2002 3 OT F 21 28
## 3168 35495 12 31 2002 3 OT F 19 27
## 3169 292 10 17 1977 3 DO F 36 33
## 3170 294 10 17 1977 3 DO F 37 50
## 3171 6147 7 25 1982 3 DO F NA 45
## 3172 23051 12 3 1995 3 DO M 36 55
## 3173 23173 12 22 1995 3 DO <NA> 36 57
## 3174 23196 12 22 1995 3 DO F 37 49
## 3175 23265 1 28 1996 3 DO M 39 64
## 3176 23273 1 28 1996 3 DO F 37 52
## 3177 23333 1 28 1996 3 DO F 34 49
## 3178 23426 2 25 1996 3 DO M 37 62
## 3179 23428 2 25 1996 3 DO F 35 40
## 3180 23438 2 25 1996 3 DO F 37 51
## 3181 23471 2 25 1996 3 DO F 35 50
## 3182 23626 3 24 1996 3 DO F 37 54
## 3183 23750 4 15 1996 3 DO F 36 41
## 3184 23762 4 15 1996 3 DO F 35 46
## 3185 23770 4 15 1996 3 DO M 37 50
## 3186 23828 4 15 1996 3 DO F 38 48
## 3187 23832 4 15 1996 3 DO M 37 41
## 3188 23955 5 24 1996 3 DO F 35 35
## 3189 23963 5 24 1996 3 DO F 37 46
## 3190 24010 5 24 1996 3 DO M 38 44
## 3191 24097 6 14 1996 3 DO F 35 49
## 3192 24138 6 14 1996 3 DO F 37 49
## 3193 24236 7 21 1996 3 DO F 35 49
## 3194 24238 7 21 1996 3 DO F 37 51
## 3195 24272 7 21 1996 3 DO F 38 53
## 3196 24334 8 15 1996 3 DO F 34 48
## 3197 24611 10 13 1996 3 DO F 35 55
## 3198 24744 11 17 1996 3 DO F 35 54
## 3199 24779 11 17 1996 3 DO F 35 45
## 3200 24879 12 19 1996 3 DO F 34 53
## 3201 24884 12 19 1996 3 DO F 36 58
## 3202 25036 2 9 1997 3 DO F 37 52
## 3203 25038 2 9 1997 3 DO F 35 57
## 3204 25077 2 9 1997 3 DO M 37 49
## 3205 25106 2 9 1997 3 DO M 33 52
## 3206 25110 2 9 1997 3 DO F 34 45
## 3207 25289 3 16 1997 3 DO F 36 53
## 3208 25318 3 16 1997 3 DO M 36 50
## 3209 25385 3 16 1997 3 DO F 35 48
## 3210 25571 4 13 1997 3 DO F 36 57
## 3211 25617 4 13 1997 3 DO F 34 49
## 3212 25639 4 13 1997 3 DO M 37 51
## 3213 25845 5 11 1997 3 DO F 37 63
## 3214 25881 5 11 1997 3 DO M 37 45
## 3215 25897 5 11 1997 3 DO F 33 46
## 3216 25939 5 11 1997 3 DO M 34 50
## 3217 25945 6 9 1997 3 DO M 35 48
## 3218 25981 6 9 1997 3 DO M 34 45
## 3219 25985 6 9 1997 3 DO F 32 49
## 3220 26260 7 9 1997 3 DO M 33 48
## 3221 26415 7 9 1997 3 DO M 36 44
## 3222 26663 7 30 1997 3 DO M 35 50
## 3223 26760 7 30 1997 3 DO M 38 47
## 3224 26919 9 28 1997 3 DO M 36 46
## 3225 26928 9 28 1997 3 DO M 36 46
## 3226 27092 10 26 1997 3 DO M 36 45
## 3227 27111 10 26 1997 3 DO M 36 46
## 3228 27145 11 22 1997 3 DO M 35 46
## 3229 27267 11 22 1997 3 DO M 36 45
## 3230 27368 12 29 1997 3 DO M 36 48
## 3231 27380 12 29 1997 3 DO M 35 44
## 3232 27525 2 1 1998 3 DO M 37 50
## 3233 27541 2 1 1998 3 DO M 35 41
## 3234 27640 3 2 1998 3 DO M 37 NA
## 3235 29500 4 18 1999 3 DO M 34 36
## 3236 32704 9 23 2001 3 DO F 36 53
## 3237 32907 10 14 2001 3 DO F 35 55
## 3238 33131 11 18 2001 3 DO F 35 51
## 3239 33425 2 9 2002 3 DO F 34 51
## 3240 33431 2 9 2002 3 DO M 36 49
## 3241 33434 2 9 2002 3 DO F 36 53
## 3242 33644 3 14 2002 3 DO M 36 56
## 3243 33650 3 14 2002 3 DO M 35 53
## 3244 33851 4 17 2002 3 DO M 36 47
## 3245 33857 4 17 2002 3 DO M 36 53
## 3246 33859 4 17 2002 3 DO F 36 56
## 3247 34049 5 16 2002 3 DO F 35 55
## 3248 34063 5 16 2002 3 DO M 36 52
## 3249 34065 5 16 2002 3 DO M 36 32
## 3250 34066 5 16 2002 3 DO M 37 29
## 3251 34288 6 16 2002 3 DO F 35 55
## 3252 70 8 19 1977 3 OX F 21 22
## 3253 1281 9 4 1978 3 SS <NA> NA NA
## 3254 7999 6 18 1983 3 SS <NA> NA NA
## 3255 9437 8 1 1984 3 SS <NA> NA NA
## 3256 11863 9 7 1986 3 SS <NA> NA NA
## 3257 14420 4 19 1988 3 SS <NA> NA NA
## 3258 14890 9 12 1988 3 SS <NA> NA NA
## 3259 14892 9 12 1988 3 SS <NA> NA NA
## 3260 14897 9 12 1988 3 SS <NA> NA NA
## 3261 14930 9 12 1988 3 SS <NA> NA NA
## 3262 15822 3 14 1989 3 SS <NA> NA NA
## 3263 16299 7 4 1989 3 SS <NA> NA NA
## 3264 23738 4 15 1996 3 SS <NA> NA NA
## 3265 24764 11 17 1996 3 SS <NA> NA NA
## 3266 25398 3 16 1997 3 SS <NA> NA NA
## 3267 26447 7 9 1997 3 SS <NA> NA NA
## 3268 26767 7 30 1997 3 SS <NA> NA NA
## 3269 28411 8 23 1998 3 SS <NA> NA NA
## 3270 504 1 8 1978 3 OL <NA> NA NA
## 3271 1880 7 4 1979 3 OL F 19 21
## 3272 1950 7 26 1979 3 OL F 20 31
## 3273 1952 7 26 1979 3 OL M 20 35
## 3274 2044 9 23 1979 3 OL M 22 34
## 3275 2045 9 23 1979 3 OL F 20 46
## 3276 2112 10 25 1979 3 OL F 21 32
## 3277 2114 10 25 1979 3 OL M 22 36
## 3278 2373 1 16 1980 3 OL M 22 36
## 3279 5275 1 25 1982 3 OL M 21 42
## 3280 5638 3 30 1982 3 OL F 21 32
## 3281 6144 7 25 1982 3 OL M NA 36
## 3282 6717 10 23 1982 3 OL M 21 48
## 3283 7998 6 18 1983 3 OL F 20 37
## 3284 8115 7 17 1983 3 OL F 20 49
## 3285 8130 7 17 1983 3 OL M 21 31
## 3286 8138 7 17 1983 3 OL F 21 27
## 3287 8222 8 16 1983 3 OL M 20 31
## 3288 8340 9 11 1983 3 OL F 20 26
## 3289 8342 9 11 1983 3 OL M 20 32
## 3290 8545 10 16 1983 3 OL M 19 33
## 3291 8950 3 13 1984 3 OL M 22 42
## 3292 8951 3 13 1984 3 OL F 21 34
## 3293 9145 5 13 1984 3 OL F 20 33
## 3294 9147 5 13 1984 3 OL M 20 43
## 3295 9243 5 28 1984 3 OL F 19 34
## 3296 9257 5 28 1984 3 OL M 21 24
## 3297 9284 5 28 1984 3 OL M 20 39
## 3298 9336 7 4 1984 3 OL M 22 41
## 3299 9343 7 4 1984 3 OL F 21 37
## 3300 9429 8 1 1984 3 OL F 21 40
## 3301 9612 9 30 1984 3 OL M 19 35
## 3302 9680 10 21 1984 3 OL F 19 18
## 3303 9699 10 21 1984 3 OL M 20 38
## 3304 9704 10 21 1984 3 OL F 20 36
## 3305 9706 10 21 1984 3 OL F 20 16
## 3306 9712 10 21 1984 3 OL F 20 21
## 3307 10255 4 21 1985 3 OL F 21 32
## 3308 10936 10 13 1985 3 OL F 19 28
## 3309 11075 11 17 1985 3 OL F 21 29
## 3310 11078 11 17 1985 3 OL M 22 32
## 3311 11615 6 5 1986 3 OL F 20 29
## 3312 11843 9 7 1986 3 OL M 21 30
## 3313 11860 9 7 1986 3 OL F 20 26
## 3314 11949 10 5 1986 3 OL F 20 24
## 3315 11958 10 5 1986 3 OL M 21 32
## 3316 13186 7 26 1987 3 OL M NA 30
## 3317 15098 11 6 1988 3 OL F 21 35
## 3318 15143 11 6 1988 3 OL F 20 17
## 3319 15146 11 6 1988 3 OL F 21 17
## 3320 15148 11 6 1988 3 OL F 20 18
## 3321 18605 4 21 1991 3 OL F 19 26
## 3322 18692 5 14 1991 3 OL F 20 29
## 3323 19466 12 8 1991 3 OL M 18 24
## 3324 19469 12 8 1991 3 OL F 21 24
## 3325 20145 7 4 1992 3 OL F 20 29
## 3326 20292 8 30 1992 3 OL F 19 23
## 3327 20611 1 25 1993 3 OL F 20 24
## 3328 20675 2 26 1993 3 OL F 18 24
## 3329 23087 12 3 1995 3 OL F 20 24
## 3330 23433 2 25 1996 3 OL F 23 26
## 3331 23816 4 15 1996 3 OL F 21 23
## 3332 34872 10 6 2002 3 OL M 20 24
## 3333 2135 10 25 1979 3 RM M 14 7
## 3334 2150 11 17 1979 3 RM M 13 7
## 3335 2512 2 25 1980 3 RM M 16 11
## 3336 2513 2 25 1980 3 RM M 17 11
## 3337 2537 3 9 1980 3 RM M NA 10
## 3338 2573 3 9 1980 3 RM F NA 14
## 3339 2793 3 22 1980 3 RM M NA 10
## 3340 2797 3 22 1980 3 RM M NA 10
## 3341 2872 4 18 1980 3 RM M NA 10
## 3342 2890 4 18 1980 3 RM F NA 12
## 3343 5031 11 23 1981 3 RM F 17 9
## 3344 5061 11 23 1981 3 RM F 16 9
## 3345 5160 1 1 1982 3 RM F 16 11
## 3346 5162 1 1 1982 3 RM F 17 10
## 3347 5182 1 1 1982 3 RM F 16 15
## 3348 5188 1 1 1982 3 RM F 16 16
## 3349 5295 1 25 1982 3 RM F 16 13
## 3350 5307 1 25 1982 3 RM F 16 12
## 3351 5409 2 23 1982 3 RM M 16 9
## 3352 5417 2 23 1982 3 RM F 17 10
## 3353 5424 2 23 1982 3 RM M 16 7
## 3354 5433 2 23 1982 3 RM M 18 10
## 3355 5439 2 23 1982 3 RM F 17 15
## 3356 5447 2 23 1982 3 RM F 17 13
## 3357 5448 2 23 1982 3 RM F 17 7
## 3358 5454 2 23 1982 3 RM M 18 11
## 3359 5641 3 30 1982 3 RM F 17 14
## 3360 5644 3 30 1982 3 RM M 17 10
## 3361 5676 3 30 1982 3 RM M 15 6
## 3362 5985 6 28 1982 3 RM M 18 13
## 3363 6012 6 28 1982 3 RM F 17 10
## 3364 6446 8 16 1982 3 RM M 18 14
## 3365 6480 8 16 1982 3 RM F 16 14
## 3366 7078 11 22 1982 3 RM F 17 11
## 3367 7092 11 22 1982 3 RM F 16 9
## 3368 7239 1 13 1983 3 RM M 17 12
## 3369 7247 1 13 1983 3 RM M 15 9
## 3370 8628 11 13 1983 3 RM M 16 9
## 3371 8664 11 13 1983 3 RM M 15 7
## 3372 8803 12 9 1983 3 RM F 16 11
## 3373 8853 2 5 1984 3 RM M 17 10
## 3374 8876 2 5 1984 3 RM F 16 8
## 3375 8879 2 5 1984 3 RM M 16 7
## 3376 9915 1 20 1985 3 RM F 16 7
## 3377 10000 2 17 1985 3 RM M 15 5
## 3378 10419 5 24 1985 3 RM F 14 5
## 3379 11042 11 17 1985 3 RM F 17 10
## 3380 11065 11 17 1985 3 RM F 16 11
## 3381 11216 12 8 1985 3 RM M 17 9
## 3382 11299 3 9 1986 3 RM F 16 7
## 3383 11309 3 9 1986 3 RM F 17 11
## 3384 11490 5 11 1986 3 RM M 16 11
## 3385 12118 12 15 1986 3 RM M 16 9
## 3386 12167 12 15 1986 3 RM M 15 12
## 3387 12263 2 1 1987 3 RM F 15 9
## 3388 12406 3 2 1987 3 RM F 16 9
## 3389 12408 3 2 1987 3 RM M 16 10
## 3390 12422 3 2 1987 3 RM M 17 11
## 3391 12436 3 2 1987 3 RM F 15 10
## 3392 12546 4 6 1987 3 RM M 16 13
## 3393 12700 4 26 1987 3 RM F 15 12
## 3394 12773 5 28 1987 3 RM F 15 12
## 3395 12978 7 1 1987 3 RM M 15 6
## 3396 12984 7 1 1987 3 RM M 16 10
## 3397 12991 7 1 1987 3 RM F 16 12
## 3398 13136 7 26 1987 3 RM F NA 9
## 3399 13333 8 26 1987 3 RM F 14 12
## 3400 13605 10 25 1987 3 RM M 18 9
## 3401 13641 10 25 1987 3 RM M 18 10
## 3402 13738 11 22 1987 3 RM M 17 9
## 3403 13761 11 22 1987 3 RM M 17 11
## 3404 13808 11 22 1987 3 RM F 17 11
## 3405 13929 1 24 1988 3 RM <NA> 17 10
## 3406 13946 1 24 1988 3 RM F 17 13
## 3407 13969 1 24 1988 3 RM M 11 11
## 3408 14129 2 22 1988 3 RM M 16 11
## 3409 14140 2 22 1988 3 RM M 16 10
## 3410 14150 2 22 1988 3 RM F 16 10
## 3411 14151 2 22 1988 3 RM F 16 10
## 3412 14277 3 21 1988 3 RM M 17 12
## 3413 14445 4 19 1988 3 RM M 17 11
## 3414 14447 4 19 1988 3 RM M 17 11
## 3415 14508 5 15 1988 3 RM F 17 14
## 3416 14608 6 12 1988 3 RM F 20 10
## 3417 14612 6 12 1988 3 RM M 17 11
## 3418 15093 11 6 1988 3 RM M 17 10
## 3419 15116 11 6 1988 3 RM F 17 11
## 3420 15139 11 6 1988 3 RM M 16 9
## 3421 15222 12 14 1988 3 RM M 16 10
## 3422 15286 12 14 1988 3 RM F 16 10
## 3423 15399 1 11 1989 3 RM M 17 10
## 3424 15417 1 11 1989 3 RM M 16 11
## 3425 15427 1 11 1989 3 RM M 17 10
## 3426 15472 1 11 1989 3 RM M 17 10
## 3427 15478 1 11 1989 3 RM F 18 13
## 3428 15585 2 5 1989 3 RM M 17 10
## 3429 15629 2 5 1989 3 RM M 18 10
## 3430 15653 2 5 1989 3 RM F 16 9
## 3431 15666 2 5 1989 3 RM M 19 11
## 3432 15810 3 14 1989 3 RM M 17 10
## 3433 15825 3 14 1989 3 RM M 17 11
## 3434 15826 3 14 1989 3 RM F 17 12
## 3435 15827 3 14 1989 3 RM M 17 11
## 3436 15865 4 1 1989 3 RM M 17 10
## 3437 15875 4 1 1989 3 RM F 17 11
## 3438 15910 4 1 1989 3 RM M 16 12
## 3439 16047 5 11 1989 3 RM F 17 8
## 3440 16053 5 11 1989 3 RM M 18 10
## 3441 16064 5 11 1989 3 RM F 17 10
## 3442 16067 5 11 1989 3 RM M 17 9
## 3443 16070 5 11 1989 3 RM F 16 6
## 3444 16159 6 4 1989 3 RM F 16 8
## 3445 16178 6 4 1989 3 RM M 18 10
## 3446 16180 6 4 1989 3 RM F 17 8
## 3447 16199 6 4 1989 3 RM M 17 9
## 3448 16279 7 4 1989 3 RM F NA 9
## 3449 16317 7 4 1989 3 RM F NA 9
## 3450 16318 7 4 1989 3 RM M NA 11
## 3451 16379 7 30 1989 3 RM M 16 11
## 3452 16387 7 30 1989 3 RM F 17 12
## 3453 16392 7 30 1989 3 RM M 17 11
## 3454 16662 11 5 1989 3 RM F 17 10
## 3455 16668 11 5 1989 3 RM F 17 13
## 3456 16685 11 5 1989 3 RM M 16 8
## 3457 16706 11 5 1989 3 RM M 17 9
## 3458 16811 12 5 1989 3 RM F 16 7
## 3459 16823 12 5 1989 3 RM F 17 13
## 3460 16833 12 5 1989 3 RM F 17 13
## 3461 16838 12 5 1989 3 RM F 16 10
## 3462 16863 12 5 1989 3 RM F 16 12
## 3463 16950 1 7 1990 3 RM M 18 10
## 3464 17059 1 30 1990 3 RM M 17 8
## 3465 17071 1 30 1990 3 RM F 17 10
## 3466 17097 1 30 1990 3 RM F 16 8
## 3467 17195 2 25 1990 3 RM F 17 14
## 3468 17223 2 25 1990 3 RM F 16 8
## 3469 17238 2 25 1990 3 RM F 17 13
## 3470 17302 3 30 1990 3 RM F 17 10
## 3471 17344 3 30 1990 3 RM M 17 10
## 3472 17447 4 26 1990 3 RM F 17 13
## 3473 17463 4 26 1990 3 RM F 16 8
## 3474 17464 4 26 1990 3 RM F 18 12
## 3475 17469 4 26 1990 3 RM F 16 8
## 3476 17480 4 26 1990 3 RM M 18 10
## 3477 17556 5 25 1990 3 RM F 16 8
## 3478 17573 5 25 1990 3 RM F 14 8
## 3479 17631 6 22 1990 3 RM M 16 9
## 3480 17702 7 22 1990 3 RM F 15 11
## 3481 17791 8 17 1990 3 RM F 15 9
## 3482 17916 10 16 1990 3 RM M 16 10
## 3483 18027 11 11 1990 3 RM F 17 15
## 3484 18053 11 11 1990 3 RM M 16 8
## 3485 18140 12 16 1990 3 RM F 17 15
## 3486 18152 12 16 1990 3 RM F 15 11
## 3487 18169 12 16 1990 3 RM M 16 10
## 3488 18272 1 12 1991 3 RM M 16 9
## 3489 18411 2 17 1991 3 RM F 16 13
## 3490 18502 3 14 1991 3 RM M 17 14
## 3491 18507 3 14 1991 3 RM F 17 10
## 3492 18864 7 13 1991 3 RM M 15 7
## 3493 19291 11 14 1991 3 RM M 16 8
## 3494 19298 11 14 1991 3 RM F 17 9
## 3495 19480 12 8 1991 3 RM M 16 9
## 3496 19491 12 8 1991 3 RM M 16 9
## 3497 19493 12 8 1991 3 RM M 15 11
## 3498 19495 12 8 1991 3 RM M 15 9
## 3499 19586 1 9 1992 3 RM M 17 8
## 3500 19702 2 7 1992 3 RM M 17 9
## 3501 19765 3 7 1992 3 RM F 16 10
## 3502 19808 3 7 1992 3 RM M 16 11
## 3503 19812 3 7 1992 3 RM M 16 10
## 3504 20053 5 31 1992 3 RM M 17 13
## 3505 20150 7 4 1992 3 RM F 16 9
## 3506 20508 10 19 1992 3 RM M 16 14
## 3507 20513 10 19 1992 3 RM F 12 10
## 3508 20563 12 22 1992 3 RM F 17 12
## 3509 20623 1 25 1993 3 RM M 17 9
## 3510 20670 2 26 1993 3 RM M 16 10
## 3511 20676 2 26 1993 3 RM M 17 12
## 3512 20741 3 18 1993 3 RM M 18 11
## 3513 20742 3 18 1993 3 RM F 18 12
## 3514 20810 4 24 1993 3 RM F 17 15
## 3515 21075 8 20 1993 3 RM F 17 10
## 3516 21136 9 17 1993 3 RM F 16 11
## 3517 21144 9 17 1993 3 RM F 17 10
## 3518 21201 10 16 1993 3 RM M 16 11
## 3519 21301 12 15 1993 3 RM F 16 6
## 3520 21363 2 2 1994 3 RM M 17 7
## 3521 21456 3 12 1994 3 RM M NA 8
## 3522 21459 3 12 1994 3 RM F 16 9
## 3523 21522 4 11 1994 3 RM M 16 9
## 3524 21524 4 11 1994 3 RM F 17 11
## 3525 21695 7 9 1994 3 RM M 17 12
## 3526 21699 7 9 1994 3 RM F 22 11
## 3527 21788 9 7 1994 3 RM F 18 14
## 3528 21843 10 13 1994 3 RM F 18 14
## 3529 21980 12 5 1994 3 RM F 16 16
## 3530 22331 6 8 1995 3 RM F NA NA
## 3531 22760 9 24 1995 3 RM M 15 NA
## 3532 23075 12 3 1995 3 RM M 17 10
## 3533 23191 12 22 1995 3 RM F 17 10
## 3534 23758 4 15 1996 3 RM M 18 12
## 3535 23776 4 15 1996 3 RM M 18 11
## 3536 24725 11 17 1996 3 RM M 17 11
## 3537 25055 2 9 1997 3 RM M 18 11
## 3538 25877 5 11 1997 3 RM F 17 18
## 3539 27180 11 22 1997 3 RM F 16 10
## 3540 29093 1 17 1999 3 RM M 15 13
## 3541 9143 5 13 1984 3 SA <NA> NA NA
## 3542 9259 5 28 1984 3 SA <NA> NA NA
## 3543 9266 5 28 1984 3 SA <NA> NA NA
## 3544 27622 3 2 1998 3 SA <NA> NA NA
## 3545 27629 3 2 1998 3 SA <NA> NA NA
## 3546 5174 1 1 1982 3 PM M 20 24
## 3547 8677 11 13 1983 3 PM M 22 21
## 3548 10101 3 17 1985 3 PM M 18 11
## 3549 10306 4 21 1985 3 PM M 19 21
## 3550 12027 11 16 1986 3 PM F 20 18
## 3551 12035 11 16 1986 3 PM M 20 21
## 3552 12121 12 15 1986 3 PM <NA> NA 25
## 3553 12162 12 15 1986 3 PM F 20 23
## 3554 12247 2 1 1987 3 PM F 19 10
## 3555 12268 2 1 1987 3 PM F 20 29
## 3556 12304 2 1 1987 3 PM M 20 24
## 3557 12308 2 1 1987 3 PM F 17 9
## 3558 12312 2 1 1987 3 PM M 20 19
## 3559 12315 2 1 1987 3 PM F 18 8
## 3560 12429 3 2 1987 3 PM M 20 24
## 3561 12452 3 2 1987 3 PM F 20 27
## 3562 12677 4 26 1987 3 PM M 21 14
## 3563 12714 4 26 1987 3 PM M 21 21
## 3564 12717 4 26 1987 3 PM M 20 14
## 3565 12751 5 28 1987 3 PM M 19 14
## 3566 13180 7 26 1987 3 PM F NA 15
## 3567 13447 9 27 1987 3 PM F 21 25
## 3568 13577 10 25 1987 3 PM M 20 27
## 3569 13618 10 25 1987 3 PM F 21 27
## 3570 13765 11 22 1987 3 PM F 20 24
## 3571 14175 2 22 1988 3 PM M 21 27
## 3572 14189 2 22 1988 3 PM F 21 27
## 3573 14264 3 21 1988 3 PM M 21 25
## 3574 14280 3 21 1988 3 PM F 22 11
## 3575 14326 3 21 1988 3 PM M 21 12
## 3576 14341 3 21 1988 3 PM M 21 26
## 3577 23195 12 22 1995 3 PM M 21 24
## 3578 24742 11 17 1996 3 PM M 21 19
## 3579 25032 2 9 1997 3 PM M 20 22
## 3580 25566 4 13 1997 3 PM M 20 17
## 3581 25655 4 13 1997 3 PM M 20 19
## 3582 25663 4 13 1997 3 PM M 21 24
## 3583 28734 10 25 1998 3 PM M 20 21
## 3584 29375 3 15 1999 3 PM M 26 22
## 3585 33436 2 9 2002 3 PM M 20 19
## 3586 10498 6 16 1985 3 AH <NA> NA NA
## 3587 26751 7 30 1997 3 AH <NA> NA NA
## 3588 5821 4 29 1982 3 AB <NA> NA NA
## 3589 7441 2 27 1983 3 AB <NA> NA NA
## 3590 8750 12 9 1983 3 AB <NA> NA NA
## 3591 9370 7 4 1984 3 AB <NA> NA NA
## 3592 12405 3 2 1987 3 AB <NA> NA NA
## 3593 13328 8 26 1987 3 AB <NA> NA NA
## 3594 14122 2 22 1988 3 AB <NA> NA NA
## 3595 14298 3 21 1988 3 AB <NA> NA NA
## 3596 16846 12 5 1989 3 AB <NA> NA NA
## 3597 16967 1 7 1990 3 AB <NA> NA NA
## 3598 28735 10 25 1998 3 CB <NA> NA NA
## 3599 3317 9 8 1980 3 CM <NA> NA NA
## 3600 3319 9 8 1980 3 CM <NA> NA NA
## 3601 3320 9 8 1980 3 CM <NA> NA NA
## 3602 9364 7 4 1984 3 CQ <NA> NA NA
## 3603 5764 4 29 1982 3 RF M 17 12
## 3604 14610 6 12 1988 3 RF F 20 15
## 3605 15138 11 6 1988 3 RF F 18 16
## 3606 16519 10 7 1989 3 RF F 18 16
## 3607 25594 4 13 1997 3 RF F 17 20
## 3608 8780 12 9 1983 3 PC <NA> NA NA
## 3609 17199 2 25 1990 3 PC <NA> NA NA
## 3610 9576 9 30 1984 3 PH F 26 28
## 3611 9688 10 21 1984 3 PH F NA NA
## 3612 16854 12 5 1989 3 BA M 14 8
## 3613 17486 4 26 1990 3 BA M 14 7
## 3614 17566 5 25 1990 3 BA F 14 10
## 3615 17616 6 22 1990 3 BA F 14 8
## 3616 17773 8 17 1990 3 BA F 15 9
## 3617 17935 10 16 1990 3 BA F 13 8
## 3618 18132 12 16 1990 3 BA F 13 8
## 3619 18252 1 12 1991 3 BA F 14 9
## 3620 18509 3 14 1991 3 BA F 14 8
## 3621 18604 4 21 1991 3 BA F 13 10
## 3622 18687 5 14 1991 3 BA F 11 8
## 3623 18778 6 14 1991 3 BA F 12 9
## 3624 18855 7 13 1991 3 BA F 14 13
## 3625 19144 10 11 1991 3 BA <NA> NA NA
## 3626 19256 11 14 1991 3 BA F 16 9
## 3627 19274 11 14 1991 3 BA F 12 8
## 3628 19499 12 8 1991 3 BA M 13 8
## 3629 19514 12 8 1991 3 BA M 14 8
## 3630 19698 2 7 1992 3 BA M 12 7
## 3631 20079 5 31 1992 3 SF <NA> 25 45
## 3632 20564 12 22 1992 3 SF F NA 49
## 3633 20688 2 26 1993 3 SF F 26 61
## 3634 19270 11 14 1991 3 SO F 27 78
## 3635 19283 11 14 1991 3 SO F 27 27
## 3636 19284 11 14 1991 3 SO F 24 26
## 3637 19309 11 14 1991 3 SO M 27 49
## 3638 19461 12 8 1991 3 SO F 25 47
## 3639 19472 12 8 1991 3 SO F 24 44
## 3640 19633 1 9 1992 3 SO F 24 38
## 3641 19699 2 7 1992 3 SO M 26 49
## 3642 19732 2 7 1992 3 SO F 25 37
## 3643 19733 2 7 1992 3 SO F 25 39
## 3644 19783 3 7 1992 3 SO M 25 58
## 3645 19827 3 7 1992 3 SO F 25 39
## 3646 19903 4 5 1992 3 SO M 26 68
## 3647 19972 5 3 1992 3 SO F 24 28
## 3648 19978 5 3 1992 3 SO F 27 105
## 3649 20047 5 31 1992 3 SO M 26 54
## 3650 20471 10 19 1992 3 SO F NA NA
## 3651 20817 4 24 1993 3 SO F 35 48
## 3652 20869 5 23 1993 3 SO M 26 76
## 3653 21006 7 15 1993 3 SO F 15 49
## 3654 21353 2 2 1994 3 SO F NA 57
## 3655 21360 2 2 1994 3 SO F 36 44
## 3656 20408 9 27 1992 3 PI <NA> 20 18
## 3657 32708 9 23 2001 3 PI M 23 17
## 3658 32904 10 14 2001 3 PI M 23 19
## 3659 34295 6 16 2002 3 PI M 22 21
## 3660 24480 9 22 1996 3 PB F 27 26
## 3661 24621 10 13 1996 3 PB F 27 30
## 3662 24737 11 17 1996 3 PB F 27 33
## 3663 24886 12 19 1996 3 PB F 27 39
## 3664 25085 2 9 1997 3 PB F 27 35
## 3665 25309 3 16 1997 3 PB M 27 34
## 3666 25335 3 16 1997 3 PB F 28 48
## 3667 25854 5 11 1997 3 PB M 26 20
## 3668 25893 5 11 1997 3 PB F 27 47
## 3669 25949 6 9 1997 3 PB F 26 29
## 3670 25965 6 9 1997 3 PB F 27 28
## 3671 25983 6 9 1997 3 PB F 28 36
## 3672 26003 6 9 1997 3 PB M 27 33
## 3673 26305 7 9 1997 3 PB M 26 21
## 3674 26358 7 9 1997 3 PB F 28 37
## 3675 26418 7 9 1997 3 PB F 27 30
## 3676 26423 7 9 1997 3 PB M 27 30
## 3677 26477 7 9 1997 3 PB M 26 33
## 3678 26705 7 30 1997 3 PB F 27 38
## 3679 26891 9 28 1997 3 PB F 27 31
## 3680 26893 9 28 1997 3 PB F 26 35
## 3681 26913 9 28 1997 3 PB F 27 29
## 3682 26926 9 28 1997 3 PB M 26 31
## 3683 27082 10 26 1997 3 PB F 27 35
## 3684 27105 10 26 1997 3 PB F 27 30
## 3685 27197 11 22 1997 3 PB M 27 35
## 3686 27210 11 22 1997 3 PB F 26 28
## 3687 27278 11 22 1997 3 PB M 26 35
## 3688 27375 12 29 1997 3 PB F 26 30
## 3689 27496 2 1 1998 3 PB F 26 37
## 3690 27626 3 2 1998 3 PB F 25 NA
## 3691 27668 3 2 1998 3 PB M 26 NA
## 3692 27820 5 3 1998 3 PB M 26 20
## 3693 27976 5 29 1998 3 PB F 27 41
## 3694 27993 5 29 1998 3 PB M 26 29
## 3695 28005 5 29 1998 3 PB F 26 34
## 3696 28092 6 28 1998 3 PB M 28 27
## 3697 28120 6 28 1998 3 PB F 24 35
## 3698 28134 6 28 1998 3 PB M 26 30
## 3699 28141 6 28 1998 3 PB F 26 19
## 3700 28153 6 28 1998 3 PB F 26 23
## 3701 28157 6 28 1998 3 PB F 25 26
## 3702 28162 6 28 1998 3 PB F 27 36
## 3703 28247 7 19 1998 3 PB F 26 25
## 3704 28251 7 19 1998 3 PB F 26 46
## 3705 28259 7 19 1998 3 PB F 26 32
## 3706 28264 7 19 1998 3 PB M 27 26
## 3707 28292 7 19 1998 3 PB M 26 35
## 3708 28305 7 19 1998 3 PB M 26 25
## 3709 28311 7 19 1998 3 PB F 24 30
## 3710 28405 8 23 1998 3 PB M 26 31
## 3711 28407 8 23 1998 3 PB M 26 26
## 3712 28408 8 23 1998 3 PB M 26 25
## 3713 28410 8 23 1998 3 PB F 26 34
## 3714 28412 8 23 1998 3 PB F 27 29
## 3715 28413 8 23 1998 3 PB M 26 20
## 3716 28415 8 23 1998 3 PB M 25 18
## 3717 28416 8 23 1998 3 PB F 25 30
## 3718 28417 8 23 1998 3 PB F 26 26
## 3719 28563 9 20 1998 3 PB M 26 26
## 3720 28565 9 20 1998 3 PB M 26 27
## 3721 28566 9 20 1998 3 PB M 26 30
## 3722 28567 9 20 1998 3 PB M 27 39
## 3723 28568 9 20 1998 3 PB F 26 29
## 3724 28569 9 20 1998 3 PB F 26 38
## 3725 28570 9 20 1998 3 PB M 26 28
## 3726 28571 9 20 1998 3 PB M 25 23
## 3727 28572 9 20 1998 3 PB M 25 24
## 3728 28573 9 20 1998 3 PB F 26 29
## 3729 28737 10 25 1998 3 PB M 26 37
## 3730 28738 10 25 1998 3 PB M 25 26
## 3731 28739 10 25 1998 3 PB F 27 35
## 3732 28740 10 25 1998 3 PB M 26 24
## 3733 28742 10 25 1998 3 PB F 25 28
## 3734 28743 10 25 1998 3 PB M 26 24
## 3735 28744 10 25 1998 3 PB F 26 27
## 3736 28864 11 22 1998 3 PB M 26 28
## 3737 28865 11 22 1998 3 PB F 27 26
## 3738 28866 11 22 1998 3 PB F 26 35
## 3739 28867 11 22 1998 3 PB M 26 30
## 3740 28869 11 22 1998 3 PB M 26 41
## 3741 28871 11 22 1998 3 PB F 26 31
## 3742 28872 11 22 1998 3 PB F 26 28
## 3743 28974 12 23 1998 3 PB F 26 28
## 3744 28975 12 23 1998 3 PB M 26 40
## 3745 28976 12 23 1998 3 PB M 25 28
## 3746 28977 12 23 1998 3 PB F 25 32
## 3747 28978 12 23 1998 3 PB F 26 30
## 3748 28979 12 23 1998 3 PB F 27 36
## 3749 29091 1 17 1999 3 PB F 26 32
## 3750 29092 1 17 1999 3 PB M 26 29
## 3751 29095 1 17 1999 3 PB F 26 29
## 3752 29096 1 17 1999 3 PB M 26 43
## 3753 29097 1 17 1999 3 PB F 26 35
## 3754 29232 2 21 1999 3 PB F 26 30
## 3755 29233 2 21 1999 3 PB M 27 47
## 3756 29234 2 21 1999 3 PB M 26 28
## 3757 29236 2 21 1999 3 PB F 26 34
## 3758 29238 2 21 1999 3 PB M 26 44
## 3759 29370 3 15 1999 3 PB M 27 41
## 3760 29371 3 15 1999 3 PB F 27 35
## 3761 29373 3 15 1999 3 PB M 26 27
## 3762 29374 3 15 1999 3 PB F 27 32
## 3763 29492 4 18 1999 3 PB F 26 32
## 3764 29493 4 18 1999 3 PB F 26 35
## 3765 29494 4 18 1999 3 PB M 25 17
## 3766 29495 4 18 1999 3 PB F 26 33
## 3767 29496 4 18 1999 3 PB F 25 18
## 3768 29497 4 18 1999 3 PB F 26 28
## 3769 29499 4 18 1999 3 PB M 26 37
## 3770 29501 4 18 1999 3 PB M 26 26
## 3771 29502 4 18 1999 3 PB F 26 28
## 3772 29503 4 18 1999 3 PB M 26 36
## 3773 29627 5 16 1999 3 PB F 26 21
## 3774 29628 5 16 1999 3 PB F 27 43
## 3775 29629 5 16 1999 3 PB F 26 37
## 3776 29630 5 16 1999 3 PB F 27 35
## 3777 29632 5 16 1999 3 PB M 25 19
## 3778 29633 5 16 1999 3 PB F 26 17
## 3779 29635 5 16 1999 3 PB F 27 28
## 3780 29636 5 16 1999 3 PB M 27 36
## 3781 29768 6 13 1999 3 PB F 26 36
## 3782 29769 6 13 1999 3 PB F 26 30
## 3783 29770 6 13 1999 3 PB F 27 26
## 3784 29771 6 13 1999 3 PB M 26 24
## 3785 29772 6 13 1999 3 PB F 26 21
## 3786 29773 6 13 1999 3 PB M 27 38
## 3787 29774 6 13 1999 3 PB F 26 24
## 3788 29775 6 13 1999 3 PB F 26 18
## 3789 29838 9 12 1999 3 PB F 26 29
## 3790 29839 9 12 1999 3 PB M 26 23
## 3791 29900 10 10 1999 3 PB F 25 22
## 3792 29901 10 10 1999 3 PB M 26 26
## 3793 29902 10 10 1999 3 PB M 26 24
## 3794 29996 11 7 1999 3 PB M 26 23
## 3795 29997 11 7 1999 3 PB F 25 30
## 3796 29998 11 7 1999 3 PB F 25 29
## 3797 29999 11 7 1999 3 PB M 25 35
## 3798 30111 12 6 1999 3 PB F 25 29
## 3799 30113 12 6 1999 3 PB M NA 39
## 3800 30114 12 6 1999 3 PB F 27 28
## 3801 30115 12 6 1999 3 PB F 26 28
## 3802 30116 12 6 1999 3 PB M 26 29
## 3803 30221 1 10 2000 3 PB F 25 29
## 3804 30222 1 10 2000 3 PB M 26 36
## 3805 30223 1 10 2000 3 PB F 26 30
## 3806 30224 1 10 2000 3 PB F 26 28
## 3807 30226 1 10 2000 3 PB M 27 52
## 3808 30358 2 6 2000 3 PB M 27 51
## 3809 30360 2 6 2000 3 PB F 27 38
## 3810 30361 2 6 2000 3 PB M 26 39
## 3811 30362 2 6 2000 3 PB F 24 26
## 3812 30364 2 6 2000 3 PB F 28 33
## 3813 30502 3 5 2000 3 PB F 26 43
## 3814 30503 3 5 2000 3 PB F 26 29
## 3815 30504 3 5 2000 3 PB F 27 40
## 3816 30505 3 5 2000 3 PB M 27 49
## 3817 30716 4 31 2000 3 PB F 24 35
## 3818 30717 4 31 2000 3 PB M 26 27
## 3819 30718 4 31 2000 3 PB F 26 30
## 3820 30719 4 31 2000 3 PB M 26 27
## 3821 30804 6 4 2000 3 PB F 25 31
## 3822 30805 6 4 2000 3 PB M 26 25
## 3823 30806 6 4 2000 3 PB F 26 32
## 3824 30807 6 4 2000 3 PB M 26 22
## 3825 30808 6 4 2000 3 PB F 26 34
## 3826 30810 6 4 2000 3 PB F 26 22
## 3827 30811 6 4 2000 3 PB M 26 21
## 3828 30812 6 4 2000 3 PB F 26 36
## 3829 30813 6 4 2000 3 PB F 26 33
## 3830 30814 6 4 2000 3 PB M 26 36
## 3831 30815 6 4 2000 3 PB M 25 20
## 3832 30988 7 2 2000 3 PB M 26 31
## 3833 30989 7 2 2000 3 PB M 26 32
## 3834 30991 7 2 2000 3 PB M 26 23
## 3835 30992 7 2 2000 3 PB M 24 40
## 3836 30994 7 2 2000 3 PB F 25 33
## 3837 30995 7 2 2000 3 PB F 24 34
## 3838 30996 7 2 2000 3 PB F 25 37
## 3839 30998 7 2 2000 3 PB M 25 26
## 3840 31159 7 22 2000 3 PB M 26 41
## 3841 31160 7 22 2000 3 PB M 26 28
## 3842 31161 7 22 2000 3 PB M 26 19
## 3843 31162 7 22 2000 3 PB F 26 31
## 3844 31163 7 22 2000 3 PB M 26 31
## 3845 31164 7 22 2000 3 PB F 26 32
## 3846 31165 7 22 2000 3 PB F 25 28
## 3847 31166 7 22 2000 3 PB M 27 31
## 3848 31178 7 23 2000 3 PB F 26 35
## 3849 31179 7 23 2000 3 PB F 25 30
## 3850 31273 8 26 2000 3 PB F 25 32
## 3851 31275 8 26 2000 3 PB F 26 31
## 3852 31277 8 26 2000 3 PB F 25 31
## 3853 31278 8 26 2000 3 PB M 26 30
## 3854 31279 8 26 2000 3 PB M 28 31
## 3855 31280 8 26 2000 3 PB F 26 34
## 3856 31443 9 31 2000 3 PB F 25 28
## 3857 31444 9 31 2000 3 PB M 25 29
## 3858 31446 9 31 2000 3 PB F 25 32
## 3859 31447 9 31 2000 3 PB M 26 32
## 3860 31448 9 31 2000 3 PB M 27 32
## 3861 31557 11 26 2000 3 PB M 26 32
## 3862 31558 11 26 2000 3 PB M 27 31
## 3863 31559 11 26 2000 3 PB F 25 29
## 3864 31561 11 26 2000 3 PB M 26 28
## 3865 31562 11 26 2000 3 PB M 27 32
## 3866 31563 11 26 2000 3 PB M 26 NA
## 3867 31667 12 23 2000 3 PB M 26 42
## 3868 31668 12 23 2000 3 PB <NA> NA NA
## 3869 31669 12 23 2000 3 PB F 25 30
## 3870 31670 12 23 2000 3 PB M 26 28
## 3871 31672 12 23 2000 3 PB M 26 35
## 3872 31751 1 22 2001 3 PB M 25 40
## 3873 31752 1 22 2001 3 PB F 25 30
## 3874 31753 1 22 2001 3 PB M 26 40
## 3875 31756 1 22 2001 3 PB M 26 29
## 3876 31888 3 25 2001 3 PB M 26 34
## 3877 31889 3 25 2001 3 PB F 27 36
## 3878 31890 3 25 2001 3 PB M 27 44
## 3879 31991 4 22 2001 3 PB F 27 40
## 3880 31992 4 22 2001 3 PB M 24 34
## 3881 32090 5 27 2001 3 PB M 28 30
## 3882 32254 7 22 2001 3 PB M 28 37
## 3883 32255 7 22 2001 3 PB M 26 32
## 3884 32257 7 22 2001 3 PB M 26 20
## 3885 32258 7 22 2001 3 PB F 26 21
## 3886 32259 7 22 2001 3 PB M 27 37
## 3887 32260 7 22 2001 3 PB M 26 39
## 3888 32261 7 22 2001 3 PB M 26 33
## 3889 32262 7 22 2001 3 PB F 27 27
## 3890 32265 7 22 2001 3 PB F 26 30
## 3891 32482 8 26 2001 3 PB M 26 40
## 3892 32484 8 26 2001 3 PB M 27 33
## 3893 32485 8 26 2001 3 PB M 26 34
## 3894 32487 8 26 2001 3 PB M 28 42
## 3895 32488 8 26 2001 3 PB F 25 28
## 3896 32489 8 26 2001 3 PB M 27 42
## 3897 32697 9 23 2001 3 PB M 27 35
## 3898 32698 9 23 2001 3 PB F 26 34
## 3899 32699 9 23 2001 3 PB M 26 35
## 3900 32700 9 23 2001 3 PB F 25 28
## 3901 32701 9 23 2001 3 PB M 27 40
## 3902 32703 9 23 2001 3 PB M 27 49
## 3903 32705 9 23 2001 3 PB M 27 41
## 3904 32706 9 23 2001 3 PB F 26 27
## 3905 32894 10 14 2001 3 PB F 27 32
## 3906 32897 10 14 2001 3 PB F 25 28
## 3907 32900 10 14 2001 3 PB F 27 29
## 3908 32903 10 14 2001 3 PB M 27 49
## 3909 32905 10 14 2001 3 PB M 26 35
## 3910 32906 10 14 2001 3 PB M 28 42
## 3911 32908 10 14 2001 3 PB F 26 34
## 3912 32909 10 14 2001 3 PB M 26 37
## 3913 33115 11 18 2001 3 PB F 26 29
## 3914 33116 11 18 2001 3 PB F 27 32
## 3915 33118 11 18 2001 3 PB M 28 47
## 3916 33124 11 18 2001 3 PB M 27 37
## 3917 33125 11 18 2001 3 PB F 25 30
## 3918 33126 11 18 2001 3 PB F 26 32
## 3919 33127 11 18 2001 3 PB F 27 34
## 3920 33128 11 18 2001 3 PB M 27 38
## 3921 33416 2 9 2002 3 PB M 26 44
## 3922 33418 2 9 2002 3 PB F 26 26
## 3923 33421 2 9 2002 3 PB F 26 28
## 3924 33422 2 9 2002 3 PB M 30 55
## 3925 33427 2 9 2002 3 PB M 26 41
## 3926 33430 2 9 2002 3 PB F 26 32
## 3927 33433 2 9 2002 3 PB F 27 32
## 3928 33642 3 14 2002 3 PB F 27 31
## 3929 33643 3 14 2002 3 PB F 26 32
## 3930 33645 3 14 2002 3 PB F 25 31
## 3931 33648 3 14 2002 3 PB M 29 55
## 3932 33649 3 14 2002 3 PB M 26 41
## 3933 33651 3 14 2002 3 PB M 26 40
## 3934 33653 3 14 2002 3 PB F 26 39
## 3935 33852 4 17 2002 3 PB M 27 51
## 3936 33853 4 17 2002 3 PB F 26 38
## 3937 33854 4 17 2002 3 PB M 26 39
## 3938 33855 4 17 2002 3 PB F 26 34
## 3939 33856 4 17 2002 3 PB F 26 39
## 3940 33861 4 17 2002 3 PB F 25 32
## 3941 34048 5 16 2002 3 PB F 26 17
## 3942 34051 5 16 2002 3 PB F 27 39
## 3943 34054 5 16 2002 3 PB M 27 48
## 3944 34055 5 16 2002 3 PB F 26 32
## 3945 34056 5 16 2002 3 PB F 25 18
## 3946 34061 5 16 2002 3 PB M 27 37
## 3947 34062 5 16 2002 3 PB M 29 39
## 3948 34289 6 16 2002 3 PB F 27 32
## 3949 34293 6 16 2002 3 PB M 26 34
## 3950 34296 6 16 2002 3 PB M 26 36
## 3951 34299 6 16 2002 3 PB F 25 34
## 3952 34532 7 14 2002 3 PB F 25 34
## 3953 34534 7 14 2002 3 PB F 26 34
## 3954 34537 7 14 2002 3 PB M 27 42
## 3955 34542 7 14 2002 3 PB F 26 27
## 3956 34543 7 14 2002 3 PB F 27 33
## 3957 34545 7 14 2002 3 PB M 26 31
## 3958 34546 7 14 2002 3 PB M 27 35
## 3959 34733 9 10 2002 3 PB F 27 46
## 3960 34734 9 10 2002 3 PB M 28 45
## 3961 34867 10 6 2002 3 PB M 27 40
## 3962 34868 10 6 2002 3 PB M 28 48
## 3963 34869 10 6 2002 3 PB F 26 32
## 3964 34870 10 6 2002 3 PB F 26 36
## 3965 34871 10 6 2002 3 PB F 26 34
## 3966 34873 10 6 2002 3 PB F 25 33
## 3967 34874 10 6 2002 3 PB F 25 15
## 3968 34875 10 6 2002 3 PB M 26 39
## 3969 34878 10 6 2002 3 PB M 27 44
## 3970 34879 10 6 2002 3 PB F 26 17
## 3971 35102 11 10 2002 3 PB F 27 38
## 3972 35103 11 10 2002 3 PB M 26 49
## 3973 35104 11 10 2002 3 PB F 27 28
## 3974 35105 11 10 2002 3 PB F 27 23
## 3975 35106 11 10 2002 3 PB F 27 30
## 3976 35107 11 10 2002 3 PB F 26 25
## 3977 35108 11 10 2002 3 PB F 26 33
## 3978 35109 11 10 2002 3 PB M 28 49
## 3979 35110 11 10 2002 3 PB M 28 45
## 3980 35111 11 10 2002 3 PB M 27 44
## 3981 35113 11 10 2002 3 PB F 27 24
## 3982 35285 12 8 2002 3 PB F 26 26
## 3983 35286 12 8 2002 3 PB F 27 38
## 3984 35287 12 8 2002 3 PB F 26 29
## 3985 35288 12 8 2002 3 PB F 27 36
## 3986 35289 12 8 2002 3 PB M 26 49
## 3987 35290 12 8 2002 3 PB F 25 30
## 3988 35291 12 8 2002 3 PB F 25 25
## 3989 35292 12 8 2002 3 PB M 27 43
## 3990 35293 12 8 2002 3 PB F 26 26
## 3991 35294 12 8 2002 3 PB F 26 34
## 3992 35295 12 8 2002 3 PB M 27 46
## 3993 35491 12 31 2002 3 PB M 26 46
## 3994 35492 12 31 2002 3 PB F 26 26
## 3995 35493 12 31 2002 3 PB F 26 34
## 3996 35494 12 31 2002 3 PB M 28 43
## 3997 26701 7 30 1997 3 PL M 21 19
## 3998 27386 12 29 1997 3 PL M 20 17
## 3999 24669 10 13 1996 3 PX <NA> NA NA
## 4000 22 7 17 1977 15 NL F 31 NA
## 4001 121 8 21 1977 15 NL <NA> NA NA
## 4002 1168 8 5 1978 15 NL F 31 196
## 4003 4649 7 8 1981 15 NL M NA 158
## 4004 4692 7 30 1981 15 NL M 33 174
## 4005 5797 4 29 1982 15 NL M 31 129
## 4006 5920 5 22 1982 15 NL M 33 164
## 4007 5999 6 28 1982 15 NL M NA 183
## 4008 6044 6 28 1982 15 NL F NA 112
## 4009 6476 8 16 1982 15 NL M 33 178
## 4010 6488 8 16 1982 15 NL F 30 137
## 4011 6756 10 23 1982 15 NL M 34 185
## 4012 8033 6 18 1983 15 NL F 29 117
## 4013 8144 7 17 1983 15 NL F 31 134
## 4014 8265 8 16 1983 15 NL F 30 145
## 4015 8364 9 11 1983 15 NL F 31 146
## 4016 8456 10 15 1983 15 NL M 34 233
## 4017 8668 11 13 1983 15 NL F 32 148
## 4018 8778 12 9 1983 15 NL F 33 148
## 4019 8869 2 5 1984 15 NL M 33 259
## 4020 9027 4 10 1984 15 NL M 33 217
## 4021 9254 5 28 1984 15 NL F 33 142
## 4022 9255 5 28 1984 15 NL M 35 224
## 4023 9344 7 4 1984 15 NL F 32 135
## 4024 9360 7 4 1984 15 NL F 28 50
## 4025 9442 8 1 1984 15 NL F 32 135
## 4026 9506 8 26 1984 15 NL M 34 216
## 4027 13424 9 27 1987 15 NL F 33 179
## 4028 13815 11 22 1987 15 NL F 35 190
## 4029 13944 1 24 1988 15 NL F 32 198
## 4030 14112 2 22 1988 15 NL F 33 186
## 4031 14493 5 15 1988 15 NL M 33 105
## 4032 14640 6 12 1988 15 NL M 31 148
## 4033 14698 7 15 1988 15 NL F 33 143
## 4034 14702 7 15 1988 15 NL M 34 180
## 4035 14795 8 10 1988 15 NL F 33 150
## 4036 14807 8 10 1988 15 NL M 30 188
## 4037 15391 1 11 1989 15 NL F 33 187
## 4038 15591 2 5 1989 15 NL F NA NA
## 4039 17317 3 30 1990 15 NL M 34 243
## 4040 26695 7 30 1997 15 NL M 35 231
## 4041 27374 12 29 1997 15 NL F 33 139
## 4042 27624 3 2 1998 15 NL F 35 NA
## 4043 27810 5 3 1998 15 NL F 34 140
## 4044 28116 6 28 1998 15 NL F 33 76
## 4045 28257 7 19 1998 15 NL F 35 187
## 4046 28630 9 21 1998 15 NL M 32 147
## 4047 32356 7 22 2001 15 NL F 26 146
## 4048 26 7 17 1977 15 DM M 31 NA
## 4049 27 7 17 1977 15 DM M 36 NA
## 4050 31 7 17 1977 15 DM F 37 NA
## 4051 114 8 21 1977 15 DM F 32 NA
## 4052 128 8 21 1977 15 DM M 34 NA
## 4053 133 8 21 1977 15 DM M 37 NA
## 4054 135 8 21 1977 15 DM F 35 NA
## 4055 143 8 21 1977 15 DM M 35 NA
## 4056 225 9 13 1977 15 DM <NA> NA NA
## 4057 227 9 13 1977 15 DM <NA> NA NA
## 4058 230 9 13 1977 15 DM <NA> NA NA
## 4059 316 10 17 1977 15 DM M 37 48
## 4060 635 2 20 1978 15 DM M 38 49
## 4061 641 2 20 1978 15 DM M 38 50
## 4062 643 2 20 1978 15 DM F 35 40
## 4063 712 3 13 1978 15 DM M 36 48
## 4064 714 3 13 1978 15 DM F NA 44
## 4065 716 3 13 1978 15 DM M 35 45
## 4066 724 3 13 1978 15 DM M 37 48
## 4067 729 3 13 1978 15 DM M 36 46
## 4068 827 4 10 1978 15 DM M 36 47
## 4069 900 5 18 1978 15 DM M 37 41
## 4070 2220 11 18 1979 15 DM M 34 46
## 4071 2221 11 18 1979 15 DM F 35 45
## 4072 2222 11 18 1979 15 DM F 35 42
## 4073 2356 1 16 1980 15 DM F 34 39
## 4074 2357 1 16 1980 15 DM M 37 36
## 4075 2358 1 16 1980 15 DM F 36 39
## 4076 2491 2 25 1980 15 DM M 36 46
## 4077 2492 2 25 1980 15 DM F 37 42
## 4078 2493 2 25 1980 15 DM M 34 44
## 4079 2642 3 9 1980 15 DM M NA 37
## 4080 2813 3 22 1980 15 DM M NA 45
## 4081 3489 11 9 1980 15 DM M 35 47
## 4082 3490 11 9 1980 15 DM F 35 39
## 4083 3491 11 9 1980 15 DM F 36 40
## 4084 3615 12 16 1980 15 DM F 36 41
## 4085 3616 12 16 1980 15 DM F 34 48
## 4086 4421 5 4 1981 15 DM F 35 38
## 4087 4425 5 4 1981 15 DM F 34 47
## 4088 4427 5 4 1981 15 DM M 36 45
## 4089 4436 5 4 1981 15 DM M 35 46
## 4090 4443 5 4 1981 15 DM M 37 47
## 4091 6722 10 23 1982 15 DM M 36 43
## 4092 9197 5 13 1984 15 DM F 37 43
## 4093 10016 2 17 1985 15 DM F 33 32
## 4094 10111 3 17 1985 15 DM F 39 43
## 4095 11732 7 4 1986 15 DM F 35 29
## 4096 15640 2 5 1989 15 DM M 35 44
## 4097 22218 4 2 1995 15 DM F 36 37
## 4098 23078 12 3 1995 15 DM M 39 47
## 4099 23270 1 28 1996 15 DM F 35 37
## 4100 23337 1 28 1996 15 DM M 38 51
## 4101 23339 1 28 1996 15 DM F 37 43
## 4102 23480 2 25 1996 15 DM M 38 50
## 4103 23486 2 25 1996 15 DM F 37 43
## 4104 23488 2 25 1996 15 DM F 35 47
## 4105 23635 3 24 1996 15 DM M 39 48
## 4106 23806 4 15 1996 15 DM M 38 35
## 4107 23965 5 24 1996 15 DM M 36 42
## 4108 24243 7 21 1996 15 DM M 38 46
## 4109 24338 8 15 1996 15 DM M 37 41
## 4110 24474 9 22 1996 15 DM M 38 48
## 4111 34395 6 16 2002 15 DM M 36 35
## 4112 34654 7 14 2002 15 DM F 36 42
## 4113 34699 9 10 2002 15 DM F 38 NA
## 4114 34926 10 6 2002 15 DM F 36 46
## 4115 34936 10 6 2002 15 DM M 37 45
## 4116 1265 9 4 1978 15 PF F 16 6
## 4117 1386 10 8 1978 15 PF F 15 7
## 4118 2147 11 17 1979 15 PF M 14 6
## 4119 2380 1 16 1980 15 PF M 14 7
## 4120 2405 1 16 1980 15 PF F 16 7
## 4121 2516 2 25 1980 15 PF M 14 7
## 4122 2576 3 9 1980 15 PF F NA 7
## 4123 2789 3 22 1980 15 PF <NA> NA NA
## 4124 2807 3 22 1980 15 PF F NA 11
## 4125 2870 4 18 1980 15 PF F NA 8
## 4126 2899 4 18 1980 15 PF M NA 7
## 4127 2905 4 18 1980 15 PF M NA 8
## 4128 2966 5 18 1980 15 PF M 14 7
## 4129 2967 5 18 1980 15 PF M 14 7
## 4130 2989 5 18 1980 15 PF F 14 8
## 4131 3163 7 22 1980 15 PF M 16 7
## 4132 3175 7 22 1980 15 PF F 14 8
## 4133 3221 8 14 1980 15 PF F 16 9
## 4134 3294 9 8 1980 15 PF M 15 8
## 4135 3308 9 8 1980 15 PF F 15 6
## 4136 3313 9 8 1980 15 PF F 14 8
## 4137 3783 1 12 1981 15 PF F 15 7
## 4138 3866 2 1 1981 15 PF F 15 8
## 4139 4000 3 9 1981 15 PF F 16 6
## 4140 4202 4 6 1981 15 PF M NA 8
## 4141 4474 5 4 1981 15 PF M 14 7
## 4142 4527 6 4 1981 15 PF M 15 7
## 4143 4660 7 8 1981 15 PF M 15 8
## 4144 4799 8 31 1981 15 PF M 16 9
## 4145 5290 1 25 1982 15 PF F 15 7
## 4146 5398 2 23 1982 15 PF M 16 7
## 4147 5618 3 30 1982 15 PF F 16 9
## 4148 5781 4 29 1982 15 PF M 17 7
## 4149 5813 4 29 1982 15 PF F 16 6
## 4150 5924 5 22 1982 15 PF F 16 9
## 4151 5944 5 22 1982 15 PF M 16 8
## 4152 5990 6 28 1982 15 PF F NA 7
## 4153 6025 6 28 1982 15 PF <NA> NA 8
## 4154 6028 6 28 1982 15 PF M NA 8
## 4155 6046 6 28 1982 15 PF M NA 6
## 4156 6245 7 26 1982 15 PF F NA 7
## 4157 6252 7 26 1982 15 PF M NA 8
## 4158 6257 7 26 1982 15 PF F NA 6
## 4159 6282 7 26 1982 15 PF M NA 6
## 4160 6431 8 16 1982 15 PF F 15 7
## 4161 6455 8 16 1982 15 PF M 16 5
## 4162 6507 8 16 1982 15 PF M 15 8
## 4163 6712 10 23 1982 15 PF M 16 6
## 4164 6999 11 21 1982 15 PF M 16 6
## 4165 7431 2 27 1983 15 PF M 16 6
## 4166 7551 3 15 1983 15 PF M 16 6
## 4167 7581 3 15 1983 15 PF M 16 7
## 4168 7593 3 15 1983 15 PF M 16 7
## 4169 7725 4 17 1983 15 PF M 16 8
## 4170 7746 4 17 1983 15 PF M 17 7
## 4171 7900 5 15 1983 15 PF M 16 8
## 4172 17318 3 30 1990 15 PF M 15 7
## 4173 17962 10 17 1990 15 PF M 14 7
## 4174 18058 11 11 1990 15 PF M 14 7
## 4175 18161 12 16 1990 15 PF M 15 7
## 4176 18253 1 12 1991 15 PF M 15 7
## 4177 20131 7 4 1992 15 PF M 20 25
## 4178 21017 7 15 1993 15 PF F 15 8
## 4179 21064 8 20 1993 15 PF M 15 8
## 4180 21130 9 17 1993 15 PF F 15 8
## 4181 21183 10 16 1993 15 PF F 15 9
## 4182 21248 11 14 1993 15 PF F 16 7
## 4183 21304 12 15 1993 15 PF F 16 7
## 4184 21364 2 3 1994 15 PF F 16 8
## 4185 21422 2 22 1994 15 PF F 15 8
## 4186 22742 9 24 1995 15 PF F 15 7
## 4187 22773 9 24 1995 15 PF M 16 9
## 4188 22787 9 24 1995 15 PF F 15 8
## 4189 22792 9 24 1995 15 PF M 17 10
## 4190 22946 10 29 1995 15 PF F 16 11
## 4191 22949 10 29 1995 15 PF M 15 7
## 4192 22963 10 29 1995 15 PF M 15 8
## 4193 23057 12 3 1995 15 PF M 16 7
## 4194 23063 12 3 1995 15 PF M 15 9
## 4195 23066 12 3 1995 15 PF F 16 8
## 4196 23178 12 22 1995 15 PF M 16 11
## 4197 23188 12 22 1995 15 PF F 16 9
## 4198 23280 1 28 1996 15 PF F 16 9
## 4199 23289 1 28 1996 15 PF M 16 11
## 4200 23448 2 25 1996 15 PF M 17 11
## 4201 23470 2 25 1996 15 PF F 17 9
## 4202 23477 2 25 1996 15 PF M 16 8
## 4203 23491 2 25 1996 15 PF F 15 10
## 4204 23745 4 15 1996 15 PF M 14 7
## 4205 23761 4 15 1996 15 PF F 16 7
## 4206 23786 4 15 1996 15 PF F 15 12
## 4207 23802 4 15 1996 15 PF M 17 8
## 4208 23822 4 15 1996 15 PF F 16 13
## 4209 23831 4 15 1996 15 PF M 15 12
## 4210 23847 4 15 1996 15 PF M 15 10
## 4211 23874 4 15 1996 15 PF F 15 9
## 4212 23880 4 15 1996 15 PF M 14 12
## 4213 23956 5 24 1996 15 PF M 16 9
## 4214 23961 5 24 1996 15 PF F 12 9
## 4215 23968 5 24 1996 15 PF F 16 11
## 4216 23971 5 24 1996 15 PF M 15 8
## 4217 23973 5 24 1996 15 PF F 15 8
## 4218 23984 5 24 1996 15 PF F 16 9
## 4219 23992 5 24 1996 15 PF F 15 8
## 4220 24093 6 14 1996 15 PF M 16 8
## 4221 24113 6 14 1996 15 PF F 16 10
## 4222 24161 6 14 1996 15 PF F 17 10
## 4223 24235 7 21 1996 15 PF M 17 10
## 4224 24463 9 22 1996 15 PF F 15 10
## 4225 24468 9 22 1996 15 PF F 16 9
## 4226 24478 9 22 1996 15 PF F 15 7
## 4227 24496 9 22 1996 15 PF F 15 8
## 4228 24641 10 13 1996 15 PF F 16 9
## 4229 24727 11 17 1996 15 PF F 15 9
## 4230 24768 11 17 1996 15 PF F 16 7
## 4231 25139 2 9 1997 15 PF F 16 7
## 4232 25146 2 9 1997 15 PF F 16 6
## 4233 25152 2 9 1997 15 PF F 16 8
## 4234 25379 3 16 1997 15 PF F 15 6
## 4235 25409 3 16 1997 15 PF F 15 9
## 4236 25573 4 13 1997 15 PF M 14 8
## 4237 25583 4 13 1997 15 PF F 16 9
## 4238 25622 4 13 1997 15 PF F 15 9
## 4239 25637 4 13 1997 15 PF M 16 9
## 4240 25647 4 13 1997 15 PF F 16 8
## 4241 25652 4 13 1997 15 PF M 15 8
## 4242 25673 4 13 1997 15 PF M 14 8
## 4243 25844 5 11 1997 15 PF M 17 10
## 4244 25858 5 11 1997 15 PF F 15 9
## 4245 25913 5 11 1997 15 PF M 16 8
## 4246 26161 6 11 1997 15 PF F 16 9
## 4247 26231 7 9 1997 15 PF M 17 9
## 4248 26273 7 9 1997 15 PF F 16 8
## 4249 26687 7 30 1997 15 PF M 16 9
## 4250 26700 7 30 1997 15 PF F 15 10
## 4251 26709 7 30 1997 15 PF F 15 8
## 4252 26881 9 28 1997 15 PF F 16 7
## 4253 26884 9 28 1997 15 PF F 15 7
## 4254 28126 6 28 1998 15 PF M NA 4
## 4255 28128 6 28 1998 15 PF F 16 8
## 4256 32029 4 22 2001 15 PF F 16 9
## 4257 32148 5 27 2001 15 PF F 16 8
## 4258 4848 9 30 1981 15 PE M 20 16
## 4259 4971 11 22 1981 15 PE M 19 10
## 4260 4985 11 22 1981 15 PE M 22 19
## 4261 5080 12 30 1981 15 PE F 23 23
## 4262 5085 12 30 1981 15 PE F 22 16
## 4263 5090 12 30 1981 15 PE F 23 18
## 4264 5273 1 25 1982 15 PE F 21 18
## 4265 5294 1 25 1982 15 PE M 20 22
## 4266 5404 2 23 1982 15 PE M 19 21
## 4267 5406 2 23 1982 15 PE F 20 23
## 4268 5793 4 29 1982 15 PE M 21 12
## 4269 5916 5 22 1982 15 PE M 21 21
## 4270 5943 5 22 1982 15 PE M 19 11
## 4271 5956 5 22 1982 15 PE M 18 10
## 4272 5962 5 22 1982 15 PE F 19 24
## 4273 5963 5 22 1982 15 PE M 19 22
## 4274 6019 6 28 1982 15 PE M NA 16
## 4275 6035 6 28 1982 15 PE M NA 22
## 4276 6974 11 21 1982 15 PE F 21 24
## 4277 7729 4 17 1983 15 PE M 20 24
## 4278 7882 5 15 1983 15 PE M 20 24
## 4279 9052 4 10 1984 15 PE M 20 16
## 4280 9439 8 1 1984 15 PE F 20 15
## 4281 12770 5 28 1987 15 PE F 19 25
## 4282 12778 5 28 1987 15 PE M 19 18
## 4283 12816 5 28 1987 15 PE <NA> NA NA
## 4284 13287 8 26 1987 15 PE M 20 19
## 4285 13310 8 26 1987 15 PE F 21 19
## 4286 13443 9 27 1987 15 PE F 21 19
## 4287 13586 10 25 1987 15 PE F 19 18
## 4288 13744 11 22 1987 15 PE F 20 17
## 4289 13819 11 22 1987 15 PE M 21 20
## 4290 14125 2 22 1988 15 PE M 21 24
## 4291 14287 3 21 1988 15 PE F 20 25
## 4292 14330 3 21 1988 15 PE M 21 25
## 4293 14498 5 15 1988 15 PE F 20 12
## 4294 14701 7 15 1988 15 PE F 21 21
## 4295 14910 9 12 1988 15 PE F 20 25
## 4296 15092 11 6 1988 15 PE F 19 24
## 4297 15285 12 14 1988 15 PE M 20 23
## 4298 16052 5 11 1989 15 PE M 21 21
## 4299 16066 5 11 1989 15 PE M 21 15
## 4300 16068 5 11 1989 15 PE F 21 25
## 4301 16174 6 4 1989 15 PE M 21 20
## 4302 16177 6 4 1989 15 PE F 20 14
## 4303 16183 6 4 1989 15 PE F 22 18
## 4304 16277 7 4 1989 15 PE M NA 16
## 4305 16363 7 30 1989 15 PE M 18 18
## 4306 16554 10 8 1989 15 PE F 21 24
## 4307 16676 11 5 1989 15 PE F 21 26
## 4308 16810 12 5 1989 15 PE M 21 14
## 4309 16815 12 5 1989 15 PE F 21 15
## 4310 16826 12 5 1989 15 PE F 22 24
## 4311 16937 1 7 1990 15 PE F 20 19
## 4312 17068 1 30 1990 15 PE F 22 23
## 4313 17861 9 25 1990 15 PE F NA 23
## 4314 18017 11 11 1990 15 PE F 21 25
## 4315 18054 11 11 1990 15 PE M 21 20
## 4316 18716 5 14 1991 15 PE F 20 36
## 4317 18795 6 14 1991 15 PE F 19 32
## 4318 18881 7 13 1991 15 PE M 21 18
## 4319 18954 8 8 1991 15 PE M 20 18
## 4320 19078 9 11 1991 15 PE M 22 19
## 4321 19086 9 11 1991 15 PE F 19 19
## 4322 19323 11 15 1991 15 PE M 20 23
## 4323 27831 5 3 1998 15 PE M 20 13
## 4324 34937 10 6 2002 15 PE F 19 28
## 4325 35374 12 8 2002 15 PE F 20 20
## 4326 144 8 21 1977 15 DS M 40 NA
## 4327 231 9 13 1977 15 DS <NA> NA NA
## 4328 4433 5 4 1981 15 DS F 49 108
## 4329 4439 5 4 1981 15 DS F 51 96
## 4330 6783 10 23 1982 15 DS F 52 127
## 4331 1076 7 8 1978 15 PP F 21 12
## 4332 1078 7 8 1978 15 PP F 23 10
## 4333 1181 8 5 1978 15 PP F 21 14
## 4334 1264 9 4 1978 15 PP F 20 15
## 4335 1368 10 8 1978 15 PP F 21 16
## 4336 1757 4 29 1979 15 PP F 21 15
## 4337 1823 5 30 1979 15 PP F 22 NA
## 4338 1842 5 30 1979 15 PP M 22 20
## 4339 1884 7 4 1979 15 PP F 22 14
## 4340 1895 7 4 1979 15 PP F 20 16
## 4341 1946 7 26 1979 15 PP F 22 16
## 4342 1948 7 26 1979 15 PP F 20 17
## 4343 1953 7 26 1979 15 PP F 21 11
## 4344 1954 7 26 1979 15 PP F 20 11
## 4345 1988 8 22 1979 15 PP F 20 15
## 4346 2047 9 23 1979 15 PP F 20 16
## 4347 2127 10 25 1979 15 PP F 21 16
## 4348 8400 9 11 1983 15 PP F 22 14
## 4349 8967 3 13 1984 15 PP F 22 14
## 4350 9043 4 10 1984 15 PP F 22 15
## 4351 9046 4 10 1984 15 PP M 24 17
## 4352 18891 7 13 1991 15 PP F 18 15
## 4353 19010 8 8 1991 15 PP M 23 18
## 4354 19914 4 5 1992 15 PP M 23 15
## 4355 20158 7 4 1992 15 PP M 23 16
## 4356 20164 7 4 1992 15 PP F 23 17
## 4357 20961 6 19 1993 15 PP F NA NA
## 4358 21086 8 20 1993 15 PP F 22 19
## 4359 21125 9 17 1993 15 PP F 14 19
## 4360 21193 10 16 1993 15 PP F 23 18
## 4361 21744 8 18 1994 15 PP M 21 20
## 4362 21786 9 7 1994 15 PP F 26 18
## 4363 21793 9 7 1994 15 PP M 21 17
## 4364 22640 8 27 1995 15 PP M 23 18
## 4365 22816 9 24 1995 15 PP M 22 15
## 4366 22822 9 24 1995 15 PP F 22 17
## 4367 22827 9 24 1995 15 PP F 21 15
## 4368 23835 4 15 1996 15 PP F 22 23
## 4369 23869 4 15 1996 15 PP M 21 18
## 4370 23879 4 15 1996 15 PP M 23 20
## 4371 23998 5 24 1996 15 PP M 14 21
## 4372 24001 5 24 1996 15 PP M 24 20
## 4373 24007 5 24 1996 15 PP M 21 10
## 4374 24132 6 14 1996 15 PP F 23 19
## 4375 24150 6 14 1996 15 PP F 22 18
## 4376 24239 7 21 1996 15 PP F 24 23
## 4377 24265 7 21 1996 15 PP M 23 23
## 4378 24361 8 15 1996 15 PP F 23 21
## 4379 24483 9 22 1996 15 PP M 21 15
## 4380 24527 9 22 1996 15 PP F 23 15
## 4381 24623 10 13 1996 15 PP M 22 15
## 4382 24649 10 13 1996 15 PP M 22 15
## 4383 25628 4 13 1997 15 PP F 22 23
## 4384 25640 4 13 1997 15 PP M 22 22
## 4385 25643 4 13 1997 15 PP F 22 17
## 4386 25653 4 13 1997 15 PP F 22 24
## 4387 25681 4 13 1997 15 PP M 22 NA
## 4388 25849 5 11 1997 15 PP M 24 21
## 4389 25875 5 11 1997 15 PP F 22 21
## 4390 25910 5 11 1997 15 PP F 21 18
## 4391 25930 5 11 1997 15 PP M 22 19
## 4392 26166 6 11 1997 15 PP M 21 14
## 4393 26181 6 11 1997 15 PP F 21 12
## 4394 26206 6 11 1997 15 PP F 21 18
## 4395 26215 6 11 1997 15 PP F 22 21
## 4396 26226 6 11 1997 15 PP F 23 17
## 4397 26242 7 9 1997 15 PP F 20 15
## 4398 26285 7 9 1997 15 PP F 21 18
## 4399 26286 7 9 1997 15 PP M 22 12
## 4400 26291 7 9 1997 15 PP M 22 13
## 4401 26326 7 9 1997 15 PP F 22 18
## 4402 26481 7 9 1997 15 PP F 22 22
## 4403 26511 7 9 1997 15 PP M 22 17
## 4404 26520 7 9 1997 15 PP M 22 15
## 4405 26673 7 30 1997 15 PP F 22 19
## 4406 26681 7 30 1997 15 PP F 21 17
## 4407 26712 7 30 1997 15 PP F 22 15
## 4408 26730 7 30 1997 15 PP M 22 15
## 4409 26766 7 30 1997 15 PP M 22 22
## 4410 27804 5 3 1998 15 PP F 21 18
## 4411 27846 5 3 1998 15 PP F 22 21
## 4412 27966 5 29 1998 15 PP F 23 21
## 4413 27968 5 29 1998 15 PP F 22 17
## 4414 28113 6 28 1998 15 PP F 22 13
## 4415 28139 6 28 1998 15 PP M 21 11
## 4416 28245 7 19 1998 15 PP F 22 17
## 4417 28273 7 19 1998 15 PP M 20 14
## 4418 28471 8 23 1998 15 PP F 21 13
## 4419 28474 8 23 1998 15 PP F 22 16
## 4420 28631 9 21 1998 15 PP M 22 14
## 4421 28633 9 21 1998 15 PP F 21 17
## 4422 29681 5 16 1999 15 PP F 22 14
## 4423 29682 5 16 1999 15 PP M 22 17
## 4424 29683 5 16 1999 15 PP F 22 16
## 4425 29684 5 16 1999 15 PP M 22 19
## 4426 29685 5 16 1999 15 PP F 20 15
## 4427 29686 5 16 1999 15 PP M 21 17
## 4428 29688 5 16 1999 15 PP M 22 19
## 4429 29811 6 13 1999 15 PP F 21 10
## 4430 29851 9 12 1999 15 PP F 20 17
## 4431 29853 9 12 1999 15 PP F 21 18
## 4432 29854 9 12 1999 15 PP F 22 22
## 4433 29933 10 10 1999 15 PP F 22 24
## 4434 29934 10 10 1999 15 PP F 22 22
## 4435 29935 10 10 1999 15 PP F 22 19
## 4436 29936 10 10 1999 15 PP F 21 17
## 4437 30051 11 7 1999 15 PP F 21 16
## 4438 30052 11 7 1999 15 PP F 21 15
## 4439 30053 11 7 1999 15 PP F 22 18
## 4440 30152 12 6 1999 15 PP F 20 17
## 4441 30153 12 6 1999 15 PP F 21 18
## 4442 30154 12 6 1999 15 PP F 20 13
## 4443 30276 1 10 2000 15 PP F 21 16
## 4444 30278 1 10 2000 15 PP M 21 16
## 4445 30279 1 10 2000 15 PP F 20 14
## 4446 30415 2 6 2000 15 PP F 21 15
## 4447 30416 2 6 2000 15 PP F 19 14
## 4448 30417 2 6 2000 15 PP F 22 16
## 4449 30569 3 5 2000 15 PP F 21 13
## 4450 30570 3 5 2000 15 PP F 21 14
## 4451 30571 3 5 2000 15 PP M 22 17
## 4452 30572 3 5 2000 15 PP M 23 21
## 4453 30573 3 5 2000 15 PP M 23 22
## 4454 30574 3 5 2000 15 PP F 21 16
## 4455 30575 3 5 2000 15 PP M 22 20
## 4456 30671 4 31 2000 15 PP M 22 19
## 4457 30672 4 31 2000 15 PP F 20 18
## 4458 30673 4 31 2000 15 PP F 20 16
## 4459 30674 4 31 2000 15 PP M 21 23
## 4460 30883 6 4 2000 15 PP F 22 19
## 4461 30884 6 4 2000 15 PP M 22 13
## 4462 30885 6 4 2000 15 PP F 22 15
## 4463 30886 6 4 2000 15 PP F 21 NA
## 4464 30888 6 4 2000 15 PP F 21 16
## 4465 30889 6 4 2000 15 PP F 21 16
## 4466 31079 7 2 2000 15 PP M 20 14
## 4467 31080 7 2 2000 15 PP M 20 12
## 4468 31081 7 2 2000 15 PP F 20 17
## 4469 31082 7 2 2000 15 PP M 21 14
## 4470 31083 7 2 2000 15 PP M 21 16
## 4471 31084 7 2 2000 15 PP F 20 15
## 4472 31086 7 2 2000 15 PP F 20 13
## 4473 31087 7 2 2000 15 PP F 20 16
## 4474 31359 8 26 2000 15 PP M 21 18
## 4475 31360 8 26 2000 15 PP F 21 14
## 4476 31362 8 26 2000 15 PP F 21 16
## 4477 31363 8 26 2000 15 PP M 20 15
## 4478 31364 8 26 2000 15 PP F 21 16
## 4479 31365 8 26 2000 15 PP M 21 15
## 4480 31496 9 31 2000 15 PP F 22 14
## 4481 31497 9 31 2000 15 PP F 22 15
## 4482 31606 11 26 2000 15 PP M 18 11
## 4483 31848 3 4 2001 15 PP M 22 14
## 4484 31928 3 25 2001 15 PP M 23 19
## 4485 31929 3 25 2001 15 PP F 22 13
## 4486 32027 4 22 2001 15 PP M 22 20
## 4487 32028 4 22 2001 15 PP M 21 18
## 4488 32030 4 22 2001 15 PP M 22 23
## 4489 32031 4 22 2001 15 PP M 22 22
## 4490 32145 5 27 2001 15 PP F 21 19
## 4491 32147 5 27 2001 15 PP F 22 21
## 4492 32347 7 22 2001 15 PP F 21 20
## 4493 32349 7 22 2001 15 PP M 22 17
## 4494 32350 7 22 2001 15 PP F 23 20
## 4495 32351 7 22 2001 15 PP M 22 17
## 4496 32353 7 22 2001 15 PP F 21 21
## 4497 32354 7 22 2001 15 PP F 22 21
## 4498 32357 7 22 2001 15 PP F 22 16
## 4499 32580 8 26 2001 15 PP <NA> NA NA
## 4500 32581 8 26 2001 15 PP F 21 16
## 4501 32582 8 26 2001 15 PP F 22 18
## 4502 32584 8 26 2001 15 PP F 23 17
## 4503 32789 9 23 2001 15 PP F 22 13
## 4504 32791 9 23 2001 15 PP M 22 15
## 4505 32793 9 23 2001 15 PP F 22 NA
## 4506 33006 10 14 2001 15 PP M 22 14
## 4507 33007 10 14 2001 15 PP F 22 14
## 4508 33012 10 14 2001 15 PP M 22 14
## 4509 33726 3 14 2002 15 PP M 22 17
## 4510 33727 3 14 2002 15 PP F 22 15
## 4511 33904 4 17 2002 15 PP F 22 17
## 4512 33905 4 17 2002 15 PP M 23 18
## 4513 33909 4 17 2002 15 PP F 22 15
## 4514 33910 4 17 2002 15 PP M 22 20
## 4515 33911 4 17 2002 15 PP F 22 18
## 4516 34165 5 16 2002 15 PP F 21 15
## 4517 34168 5 16 2002 15 PP F 22 20
## 4518 34169 5 16 2002 15 PP M 23 18
## 4519 34170 5 16 2002 15 PP F 21 20
## 4520 34390 6 16 2002 15 PP M 22 10
## 4521 34393 6 16 2002 15 PP F 22 19
## 4522 34399 6 16 2002 15 PP M 22 16
## 4523 34400 6 16 2002 15 PP M 22 22
## 4524 34402 6 16 2002 15 PP M 25 18
## 4525 34648 7 14 2002 15 PP F 22 15
## 4526 34650 7 14 2002 15 PP F 23 17
## 4527 34651 7 14 2002 15 PP M 20 17
## 4528 34655 7 14 2002 15 PP F 21 18
## 4529 34660 7 14 2002 15 PP M 22 17
## 4530 34933 10 6 2002 15 PP F 21 16
## 4531 34938 10 6 2002 15 PP F 23 19
## 4532 14373 4 18 1988 15 SH M 27 72
## 4533 31085 7 2 2000 15 SH M 25 51
## 4534 33902 4 17 2002 15 SH M 26 51
## 4535 33908 4 17 2002 15 SH M 28 55
## 4536 34658 7 14 2002 15 SH M 27 57
## 4537 1762 4 29 1979 15 OT M 20 23
## 4538 1819 5 30 1979 15 OT M 20 24
## 4539 1822 5 30 1979 15 OT F 18 15
## 4540 2121 10 25 1979 15 OT F 20 19
## 4541 2146 11 17 1979 15 OT F 20 22
## 4542 2166 11 17 1979 15 OT M 21 21
## 4543 2407 1 16 1980 15 OT F 20 22
## 4544 2507 2 25 1980 15 OT M 21 26
## 4545 2508 2 25 1980 15 OT F 20 26
## 4546 2598 3 9 1980 15 OT F NA 27
## 4547 2710 3 9 1980 15 OT F NA 26
## 4548 2787 3 22 1980 15 OT F NA 33
## 4549 2817 3 22 1980 15 OT M NA 30
## 4550 2884 4 18 1980 15 OT F NA 36
## 4551 3095 6 23 1980 15 OT M NA 26
## 4552 3370 10 12 1980 15 OT F 20 26
## 4553 3377 10 12 1980 15 OT M 20 11
## 4554 3396 10 12 1980 15 OT F 19 13
## 4555 3398 10 12 1980 15 OT M 21 23
## 4556 5831 4 29 1982 15 OT F 19 26
## 4557 5994 6 28 1982 15 OT M NA 30
## 4558 6056 6 28 1982 15 OT F NA 17
## 4559 6229 7 26 1982 15 OT F NA 25
## 4560 6514 8 16 1982 15 OT F 20 23
## 4561 6613 9 19 1982 15 OT M 20 29
## 4562 6769 10 23 1982 15 OT M 20 23
## 4563 7230 1 12 1983 15 OT F 19 25
## 4564 7410 2 27 1983 15 OT M 21 25
## 4565 7913 5 15 1983 15 OT M 20 19
## 4566 8121 7 17 1983 15 OT M 20 13
## 4567 8390 9 11 1983 15 OT M 20 24
## 4568 8633 11 13 1983 15 OT F 21 23
## 4569 9030 4 10 1984 15 OT F 22 31
## 4570 9264 5 28 1984 15 OT M 20 19
## 4571 10331 4 21 1985 15 OT M 20 20
## 4572 11851 9 7 1986 15 OT M 22 22
## 4573 12965 7 1 1987 15 OT F 20 24
## 4574 13262 8 26 1987 15 OT M 20 22
## 4575 13273 8 26 1987 15 OT F 20 26
## 4576 14533 5 15 1988 15 OT M 21 25
## 4577 14915 9 12 1988 15 OT F 22 27
## 4578 16696 11 5 1989 15 OT F 22 23
## 4579 19341 11 15 1991 15 OT M 20 24
## 4580 22768 9 24 1995 15 OT M 20 26
## 4581 22790 9 24 1995 15 OT F 20 23
## 4582 22928 10 29 1995 15 OT F 20 19
## 4583 22967 10 29 1995 15 OT M 21 23
## 4584 24164 6 14 1996 15 OT M 21 26
## 4585 24519 9 22 1996 15 OT F 21 27
## 4586 24523 9 22 1996 15 OT M 20 16
## 4587 24607 10 13 1996 15 OT M 21 21
## 4588 24619 10 13 1996 15 OT M 20 26
## 4589 25334 3 16 1997 15 OT F 19 25
## 4590 25370 3 16 1997 15 OT M 19 26
## 4591 25631 4 13 1997 15 OT F 17 26
## 4592 25937 5 11 1997 15 OT F 20 25
## 4593 26210 6 11 1997 15 OT F 20 25
## 4594 26368 7 9 1997 15 OT M 20 22
## 4595 26492 7 9 1997 15 OT F 21 24
## 4596 27188 11 22 1997 15 OT F 20 22
## 4597 27226 11 22 1997 15 OT F 20 23
## 4598 27383 12 29 1997 15 OT M 20 22
## 4599 27986 5 29 1998 15 OT M 21 21
## 4600 30277 1 10 2000 15 OT F 20 19
## 4601 30567 3 5 2000 15 OT M 20 26
## 4602 30670 4 31 2000 15 OT F 19 38
## 4603 31361 8 26 2000 15 OT F 21 30
## 4604 31494 9 31 2000 15 OT M 20 20
## 4605 31495 9 31 2000 15 OT F 20 24
## 4606 31607 11 26 2000 15 OT F 19 25
## 4607 31706 12 23 2000 15 OT F 21 25
## 4608 31707 12 23 2000 15 OT M 20 19
## 4609 31786 1 22 2001 15 OT M 21 22
## 4610 31849 3 4 2001 15 OT F 20 24
## 4611 31930 3 25 2001 15 OT F 20 42
## 4612 32026 4 22 2001 15 OT M 21 29
## 4613 32795 9 23 2001 15 OT F 20 NA
## 4614 32797 9 23 2001 15 OT M 20 24
## 4615 33008 10 14 2001 15 OT M 20 14
## 4616 33009 10 14 2001 15 OT M 20 14
## 4617 33010 10 14 2001 15 OT F 20 20
## 4618 33209 11 18 2001 15 OT F 20 19
## 4619 34700 9 10 2002 15 OT F 20 31
## 4620 35175 11 10 2002 15 DO F 34 42
## 4621 4651 7 8 1981 15 SS <NA> NA NA
## 4622 5998 6 28 1982 15 SS <NA> NA NA
## 4623 6018 6 28 1982 15 SS <NA> NA NA
## 4624 6468 8 16 1982 15 SS <NA> NA NA
## 4625 21149 9 17 1993 15 SS <NA> NA NA
## 4626 30887 6 4 2000 15 SS <NA> NA NA
## 4627 2973 5 18 1980 15 OL F 20 39
## 4628 3787 1 12 1981 15 OL F 20 32
## 4629 4512 6 4 1981 15 OL M 21 30
## 4630 4697 7 30 1981 15 OL M 21 39
## 4631 6671 10 23 1982 15 OL M 20 36
## 4632 6702 10 23 1982 15 OL M 22 42
## 4633 6746 10 23 1982 15 OL M 21 29
## 4634 7182 1 12 1983 15 OL M 21 34
## 4635 7404 2 27 1983 15 OL M 21 33
## 4636 7577 3 15 1983 15 OL M 21 34
## 4637 8031 6 18 1983 15 OL F 20 45
## 4638 8145 7 17 1983 15 OL F 20 32
## 4639 15156 11 6 1988 15 OL M 21 20
## 4640 15650 2 5 1989 15 OL M 22 33
## 4641 15660 2 5 1989 15 OL F 22 33
## 4642 15670 2 5 1989 15 OL M 21 39
## 4643 21982 12 5 1994 15 OL F 21 23
## 4644 21984 12 5 1994 15 OL M 22 19
## 4645 24170 6 14 1996 15 OL F 21 21
## 4646 2379 1 16 1980 15 RM F 15 10
## 4647 2523 2 25 1980 15 RM F 16 9
## 4648 2529 2 25 1980 15 RM M 15 8
## 4649 2825 3 22 1980 15 RM M NA 7
## 4650 5101 12 30 1981 15 RM M 16 9
## 4651 5103 12 30 1981 15 RM F 18 12
## 4652 5437 2 23 1982 15 RM M 17 11
## 4653 5440 2 23 1982 15 RM M 16 9
## 4654 5660 3 30 1982 15 RM M 16 9
## 4655 5807 4 29 1982 15 RM F 17 15
## 4656 6218 7 26 1982 15 RM M NA 9
## 4657 6998 11 21 1982 15 RM M 17 11
## 4658 7428 2 27 1983 15 RM M 17 8
## 4659 7570 3 15 1983 15 RM M 17 12
## 4660 7585 3 15 1983 15 RM M 17 11
## 4661 7632 3 15 1983 15 RM F 16 9
## 4662 7920 5 15 1983 15 RM M 17 11
## 4663 8863 2 5 1984 15 RM F 17 7
## 4664 9139 5 13 1984 15 RM F 17 9
## 4665 9871 1 20 1985 15 RM M 16 5
## 4666 9909 1 20 1985 15 RM F 15 4
## 4667 11077 11 17 1985 15 RM M 17 8
## 4668 11541 5 11 1986 15 RM M 15 9
## 4669 11542 5 11 1986 15 RM F 17 18
## 4670 12155 12 15 1986 15 RM M 16 10
## 4671 12292 2 1 1987 15 RM F 18 13
## 4672 12403 3 2 1987 15 RM M 16 10
## 4673 12450 3 2 1987 15 RM F 16 9
## 4674 12565 4 6 1987 15 RM M 15 10
## 4675 13113 7 26 1987 15 RM F NA 10
## 4676 13260 8 26 1987 15 RM F 16 12
## 4677 13277 8 26 1987 15 RM F 15 11
## 4678 13299 8 26 1987 15 RM M 16 12
## 4679 13628 10 25 1987 15 RM M 16 7
## 4680 13821 11 22 1987 15 RM M 17 12
## 4681 13950 1 24 1988 15 RM M 17 9
## 4682 14002 1 24 1988 15 RM F 16 9
## 4683 14166 2 22 1988 15 RM F 16 9
## 4684 14176 2 22 1988 15 RM F 16 8
## 4685 14185 2 22 1988 15 RM M 16 11
## 4686 14312 3 21 1988 15 RM F 16 9
## 4687 14315 3 21 1988 15 RM F 18 8
## 4688 14338 3 21 1988 15 RM M 18 10
## 4689 14374 4 18 1988 15 RM M 17 11
## 4690 14924 9 12 1988 15 RM F 17 15
## 4691 15298 12 14 1988 15 RM F 17 13
## 4692 15307 12 14 1988 15 RM M 17 11
## 4693 15452 1 11 1989 15 RM F 17 14
## 4694 15571 2 5 1989 15 RM F 17 10
## 4695 15634 2 5 1989 15 RM F 17 9
## 4696 15798 3 14 1989 15 RM M 17 10
## 4697 15799 3 14 1989 15 RM F 17 13
## 4698 15800 3 14 1989 15 RM F 17 13
## 4699 15832 3 14 1989 15 RM M 17 10
## 4700 15920 4 2 1989 15 RM M 17 10
## 4701 15941 4 2 1989 15 RM M 17 11
## 4702 15960 4 2 1989 15 RM F 14 9
## 4703 16065 5 11 1989 15 RM M 17 11
## 4704 16081 5 11 1989 15 RM F 17 10
## 4705 16197 6 4 1989 15 RM M 17 12
## 4706 16210 6 4 1989 15 RM F 17 5
## 4707 16312 7 4 1989 15 RM F NA 10
## 4708 16974 1 7 1990 15 RM M 17 9
## 4709 17088 1 30 1990 15 RM F 17 12
## 4710 17194 2 25 1990 15 RM F 17 10
## 4711 17196 2 25 1990 15 RM M 17 9
## 4712 17421 4 25 1990 15 RM M 17 8
## 4713 18045 11 11 1990 15 RM M 17 10
## 4714 18170 12 16 1990 15 RM F 17 12
## 4715 18260 1 12 1991 15 RM F 17 13
## 4716 18298 1 12 1991 15 RM <NA> NA NA
## 4717 18385 2 17 1991 15 RM F 17 12
## 4718 18426 2 17 1991 15 RM F 16 13
## 4719 18544 3 14 1991 15 RM F 18 13
## 4720 18589 4 20 1991 15 RM F 16 10
## 4721 18593 4 20 1991 15 RM M 16 12
## 4722 19005 8 8 1991 15 RM F 16 5
## 4723 19329 11 15 1991 15 RM M 16 8
## 4724 19344 11 15 1991 15 RM F 17 14
## 4725 19512 12 8 1991 15 RM F 16 11
## 4726 19526 12 8 1991 15 RM M 15 8
## 4727 19621 1 9 1992 15 RM F 16 9
## 4728 19850 3 8 1992 15 RM M 17 10
## 4729 20416 9 27 1992 15 RM M 16 6
## 4730 20882 5 23 1993 15 RM F 17 9
## 4731 20937 6 19 1993 15 RM M 17 9
## 4732 21137 9 17 1993 15 RM M 17 11
## 4733 21250 11 14 1993 15 RM M 16 9
## 4734 21546 4 11 1994 15 RM M 16 8
## 4735 22017 1 12 1995 15 RM F 16 9
## 4736 22088 2 5 1995 15 RM F 17 13
## 4737 22153 3 5 1995 15 RM F 16 16
## 4738 22199 4 2 1995 15 RM M 16 9
## 4739 23060 12 3 1995 15 RM M 16 8
## 4740 23288 1 28 1996 15 RM M 16 10
## 4741 23458 2 25 1996 15 RM M 17 10
## 4742 23620 3 24 1996 15 RM F 16 11
## 4743 23633 3 24 1996 15 RM M 18 10
## 4744 23783 4 15 1996 15 RM M 17 14
## 4745 23852 4 15 1996 15 RM F 16 16
## 4746 24733 11 17 1996 15 RM F 17 12
## 4747 24872 12 19 1996 15 RM M 15 11
## 4748 25031 2 9 1997 15 RM M 16 11
## 4749 25067 2 9 1997 15 RM M 17 9
## 4750 25071 2 9 1997 15 RM M 17 10
## 4751 25091 2 9 1997 15 RM F 16 10
## 4752 25292 3 16 1997 15 RM M 16 11
## 4753 25391 3 16 1997 15 RM M 16 12
## 4754 25590 4 13 1997 15 RM M 16 13
## 4755 26261 7 9 1997 15 RM M 17 11
## 4756 28318 7 19 1998 15 RM F 16 14
## 4757 29146 1 17 1999 15 RM M 15 11
## 4758 29556 4 18 1999 15 RM M 16 9
## 4759 29687 5 16 1999 15 RM M 17 10
## 4760 33551 2 10 2002 15 RM F 17 7
## 4761 33554 2 10 2002 15 RM F 17 10
## 4762 33730 3 14 2002 15 RM F 17 7
## 4763 4477 5 4 1981 15 SA <NA> NA NA
## 4764 5655 3 30 1982 15 SA <NA> NA NA
## 4765 26439 7 9 1997 15 SA <NA> NA NA
## 4766 1657 2 25 1979 15 PM F 19 24
## 4767 1765 4 29 1979 15 PM M 22 18
## 4768 4489 6 4 1981 15 PM M 21 20
## 4769 4540 6 4 1981 15 PM F 22 20
## 4770 5637 3 30 1982 15 PM F 19 34
## 4771 5774 4 29 1982 15 PM F 19 18
## 4772 5830 4 29 1982 15 PM M 21 23
## 4773 6002 6 28 1982 15 PM F NA 29
## 4774 6031 6 28 1982 15 PM M NA 23
## 4775 6236 7 26 1982 15 PM F NA 22
## 4776 6286 7 26 1982 15 PM F NA 22
## 4777 6483 8 16 1982 15 PM M 20 21
## 4778 6728 10 23 1982 15 PM M 19 19
## 4779 7215 1 12 1983 15 PM M 21 21
## 4780 8420 10 15 1983 15 PM M 21 22
## 4781 9033 4 10 1984 15 PM M 21 17
## 4782 9125 5 13 1984 15 PM M 21 17
## 4783 9155 5 13 1984 15 PM F 21 17
## 4784 9246 5 28 1984 15 PM M 20 22
## 4785 10090 3 17 1985 15 PM M 20 16
## 4786 10283 4 21 1985 15 PM F 20 19
## 4787 12159 12 15 1986 15 PM M 19 22
## 4788 12590 4 6 1987 15 PM M 21 26
## 4789 12743 5 28 1987 15 PM M 20 20
## 4790 12757 5 28 1987 15 PM M 18 14
## 4791 12765 5 28 1987 15 PM F 20 23
## 4792 12996 7 1 1987 15 PM M 22 21
## 4793 13159 7 26 1987 15 PM M NA 22
## 4794 13271 8 26 1987 15 PM F 20 25
## 4795 13632 10 25 1987 15 PM M 21 20
## 4796 15672 2 5 1989 15 PM M 21 20
## 4797 25413 3 16 1997 15 PM F 20 21
## 4798 25612 4 13 1997 15 PM F 20 25
## 4799 25883 5 11 1997 15 PM F 19 23
## 4800 26200 6 11 1997 15 PM F 21 21
## 4801 26203 6 11 1997 15 PM F 19 16
## 4802 26504 7 9 1997 15 PM F 21 22
## 4803 26692 7 30 1997 15 PM F 20 21
## 4804 26698 7 30 1997 15 PM F 20 17
## 4805 27107 10 26 1997 15 PM F 20 14
## 4806 27112 10 26 1997 15 PM M 20 13
## 4807 27114 10 26 1997 15 PM F 20 25
## 4808 27123 10 26 1997 15 PM M 19 13
## 4809 27159 11 22 1997 15 PM M 20 16
## 4810 27217 11 22 1997 15 PM F 20 22
## 4811 27363 12 29 1997 15 PM M 21 22
## 4812 27992 5 29 1998 15 PM M 20 18
## 4813 27996 5 29 1998 15 PM F 20 16
## 4814 27999 5 29 1998 15 PM F 20 18
## 4815 28145 6 28 1998 15 PM M 20 20
## 4816 28277 7 19 1998 15 PM M 20 20
## 4817 28472 8 23 1998 15 PM M 20 20
## 4818 29414 3 15 1999 15 PM F 21 28
## 4819 1446 11 5 1978 15 AH <NA> NA NA
## 4820 8641 11 13 1983 15 AH <NA> NA NA
## 4821 9583 9 30 1984 15 AH <NA> NA NA
## 4822 9882 1 20 1985 15 AH <NA> NA NA
## 4823 10509 6 16 1985 15 AH <NA> NA NA
## 4824 10694 8 20 1985 15 AH <NA> NA NA
## 4825 11040 11 17 1985 15 AH <NA> NA NA
## 4826 11389 4 13 1986 15 AH <NA> NA NA
## 4827 11507 5 11 1986 15 AH <NA> NA NA
## 4828 11606 6 5 1986 15 AH <NA> NA NA
## 4829 11789 8 10 1986 15 AH <NA> NA NA
## 4830 11871 9 7 1986 15 AH <NA> NA NA
## 4831 12028 11 16 1986 15 AH <NA> NA NA
## 4832 12261 2 1 1987 15 AH <NA> NA NA
## 4833 12278 2 1 1987 15 AH <NA> NA NA
## 4834 12437 3 2 1987 15 AH <NA> NA NA
## 4835 12809 5 28 1987 15 AH <NA> NA NA
## 4836 12829 5 28 1987 15 AH <NA> NA NA
## 4837 12832 5 28 1987 15 AH <NA> NA NA
## 4838 12834 5 28 1987 15 AH <NA> NA NA
## 4839 13144 7 26 1987 15 AH <NA> NA NA
## 4840 13338 8 26 1987 15 AH <NA> NA NA
## 4841 13438 9 27 1987 15 AH <NA> NA NA
## 4842 13440 9 27 1987 15 AH <NA> NA NA
## 4843 13444 9 27 1987 15 AH <NA> NA NA
## 4844 13756 11 22 1987 15 AH <NA> NA NA
## 4845 14512 5 15 1988 15 AH <NA> NA NA
## 4846 15003 10 9 1988 15 AH <NA> NA NA
## 4847 15624 2 5 1989 15 AH <NA> NA NA
## 4848 16175 6 4 1989 15 AH <NA> NA NA
## 4849 16184 6 4 1989 15 AH <NA> NA NA
## 4850 16288 7 4 1989 15 AH <NA> NA NA
## 4851 16564 10 8 1989 15 AH <NA> NA NA
## 4852 16688 11 5 1989 15 AH <NA> NA NA
## 4853 17416 4 25 1990 15 AH <NA> NA NA
## 4854 17557 5 25 1990 15 AH <NA> NA NA
## 4855 17813 8 17 1990 15 AH <NA> NA NA
## 4856 17969 10 17 1990 15 AH <NA> NA NA
## 4857 19489 12 8 1991 15 AH <NA> NA NA
## 4858 19853 3 8 1992 15 AH <NA> NA NA
## 4859 20057 5 31 1992 15 AH <NA> NA NA
## 4860 20058 5 31 1992 15 AH <NA> NA NA
## 4861 20876 5 23 1993 15 AH <NA> NA NA
## 4862 21804 9 7 1994 15 AH <NA> NA NA
## 4863 21913 11 2 1994 15 AH <NA> NA NA
## 4864 22080 2 5 1995 15 AH <NA> NA NA
## 4865 22083 2 5 1995 15 AH <NA> NA NA
## 4866 22099 2 5 1995 15 AH <NA> NA NA
## 4867 22222 4 2 1995 15 AH <NA> NA NA
## 4868 22275 4 30 1995 15 AH <NA> NA NA
## 4869 22342 6 8 1995 15 AH <NA> NA NA
## 4870 22351 6 8 1995 15 AH <NA> NA NA
## 4871 22423 6 28 1995 15 AH <NA> NA NA
## 4872 22609 8 27 1995 15 AH <NA> NA NA
## 4873 22771 9 24 1995 15 AH <NA> NA NA
## 4874 22940 10 29 1995 15 AH <NA> NA NA
## 4875 23093 12 3 1995 15 AH <NA> NA NA
## 4876 23095 12 3 1995 15 AH <NA> NA NA
## 4877 23808 4 15 1996 15 AH <NA> NA NA
## 4878 23827 4 15 1996 15 AH <NA> NA NA
## 4879 23854 4 15 1996 15 AH <NA> NA NA
## 4880 24620 10 13 1996 15 AH <NA> NA NA
## 4881 25880 5 11 1997 15 AH <NA> NA NA
## 4882 25892 5 11 1997 15 AH <NA> NA NA
## 4883 26183 6 11 1997 15 AH <NA> NA NA
## 4884 27190 11 22 1997 15 AH <NA> NA NA
## 4885 27956 5 29 1998 15 AH <NA> NA NA
## 4886 27971 5 29 1998 15 AH <NA> NA NA
## 4887 28106 6 28 1998 15 AH <NA> NA NA
## 4888 28632 9 21 1998 15 AH <NA> NA NA
## 4889 28788 10 25 1998 15 AH <NA> NA NA
## 4890 28916 11 22 1998 15 AH <NA> NA NA
## 4891 29018 12 23 1998 15 AH <NA> NA NA
## 4892 29019 12 23 1998 15 AH <NA> NA NA
## 4893 29145 1 17 1999 15 AH <NA> NA NA
## 4894 29852 9 12 1999 15 AH <NA> NA NA
## 4895 30568 3 5 2000 15 AH <NA> NA NA
## 4896 31850 3 4 2001 15 AH <NA> NA NA
## 4897 32146 5 27 2001 15 AH <NA> NA NA
## 4898 32355 7 22 2001 15 AH <NA> NA NA
## 4899 33005 10 14 2001 15 AH <NA> NA NA
## 4900 33211 11 18 2001 15 AH <NA> NA NA
## 4901 33552 2 10 2002 15 AH <NA> NA NA
## 4902 33553 2 10 2002 15 AH <NA> NA NA
## 4903 33903 4 17 2002 15 AH <NA> NA NA
## 4904 34171 5 16 2002 15 AH <NA> NA NA
## 4905 34173 5 16 2002 15 AH <NA> NA NA
## 4906 34930 10 6 2002 15 AH <NA> NA NA
## 4907 35545 12 31 2002 15 AH <NA> NA NA
## 4908 35546 12 31 2002 15 AH <NA> NA NA
## 4909 23184 12 22 1995 15 DX <NA> NA NA
## 4910 9569 9 30 1984 15 AB <NA> NA NA
## 4911 12260 2 1 1987 15 AB <NA> NA NA
## 4912 12542 4 6 1987 15 AB <NA> NA NA
## 4913 12575 4 6 1987 15 AB <NA> NA NA
## 4914 12594 4 6 1987 15 AB <NA> NA NA
## 4915 12600 4 6 1987 15 AB <NA> NA NA
## 4916 13832 11 22 1987 15 AB <NA> NA NA
## 4917 15263 12 14 1988 15 AB <NA> NA NA
## 4918 15277 12 14 1988 15 AB <NA> NA NA
## 4919 17092 1 30 1990 15 AB <NA> NA NA
## 4920 17356 3 30 1990 15 AB <NA> NA NA
## 4921 30418 2 6 2000 15 AB <NA> NA NA
## 4922 4707 7 30 1981 15 CB <NA> NA NA
## 4923 8014 6 18 1983 15 CB <NA> NA NA
## 4924 8433 10 15 1983 15 CB <NA> NA NA
## 4925 21253 11 14 1993 15 CB <NA> NA NA
## 4926 13337 8 26 1987 15 CM <NA> NA NA
## 4927 7029 11 21 1982 15 RF M 16 11
## 4928 12559 4 6 1987 15 PC <NA> NA NA
## 4929 17219 2 25 1990 15 PC <NA> NA NA
## 4930 18500 3 14 1991 15 PC <NA> NA NA
## 4931 19350 11 15 1991 15 PC <NA> NA NA
## 4932 22024 1 12 1995 15 PC <NA> NA NA
## 4933 13313 8 26 1987 15 CV <NA> NA NA
## 4934 18898 7 13 1991 15 SF F 36 52
## 4935 35539 12 31 2002 15 SF M 26 68
## 4936 25934 5 11 1997 15 PB M NA 19
## 4937 26192 6 11 1997 15 PB F 26 25
## 4938 26313 7 9 1997 15 PB F 26 21
## 4939 26411 7 9 1997 15 PB F 26 28
## 4940 26740 7 30 1997 15 PB F 25 29
## 4941 26897 9 28 1997 15 PB M 26 26
## 4942 26910 9 28 1997 15 PB F 26 30
## 4943 27089 10 26 1997 15 PB F 26 28
## 4944 28291 7 19 1998 15 PB F 26 19
## 4945 28473 8 23 1998 15 PB M 24 24
## 4946 28634 9 21 1998 15 PB M 24 24
## 4947 28789 10 25 1998 15 PB M 25 25
## 4948 28917 11 22 1998 15 PB M 25 26
## 4949 29413 3 15 1999 15 PB M 25 26
## 4950 29555 4 18 1999 15 PB F 24 38
## 4951 32144 5 27 2001 15 PB M 26 40
## 4952 32348 7 22 2001 15 PB M 26 29
## 4953 32352 7 22 2001 15 PB F 27 30
## 4954 32583 8 26 2001 15 PB F 27 34
## 4955 32585 8 26 2001 15 PB M 26 32
## 4956 32790 9 23 2001 15 PB M 25 27
## 4957 32792 9 23 2001 15 PB M 26 33
## 4958 32794 9 23 2001 15 PB F 26 27
## 4959 32796 9 23 2001 15 PB F 26 32
## 4960 33011 10 14 2001 15 PB F 26 28
## 4961 33013 10 14 2001 15 PB M 26 35
## 4962 33210 11 18 2001 15 PB M 27 38
## 4963 33212 11 18 2001 15 PB F 26 29
## 4964 33550 2 10 2002 15 PB F 25 31
## 4965 33555 2 10 2002 15 PB M 27 45
## 4966 33728 3 14 2002 15 PB F 26 34
## 4967 33729 3 14 2002 15 PB M 26 43
## 4968 33906 4 17 2002 15 PB F 27 43
## 4969 33907 4 17 2002 15 PB M 25 23
## 4970 33912 4 17 2002 15 PB F 26 19
## 4971 34166 5 16 2002 15 PB M 25 24
## 4972 34167 5 16 2002 15 PB F 27 33
## 4973 34172 5 16 2002 15 PB F 27 23
## 4974 34388 6 16 2002 15 PB F 26 37
## 4975 34389 6 16 2002 15 PB M 25 NA
## 4976 34391 6 16 2002 15 PB M 26 17
## 4977 34392 6 16 2002 15 PB M 26 26
## 4978 34394 6 16 2002 15 PB F 26 19
## 4979 34396 6 16 2002 15 PB F 26 29
## 4980 34397 6 16 2002 15 PB F 26 17
## 4981 34398 6 16 2002 15 PB F 25 16
## 4982 34401 6 16 2002 15 PB F 26 26
## 4983 34649 7 14 2002 15 PB F 24 25
## 4984 34652 7 14 2002 15 PB F 25 29
## 4985 34653 7 14 2002 15 PB F 25 29
## 4986 34656 7 14 2002 15 PB M 25 29
## 4987 34657 7 14 2002 15 PB M 26 29
## 4988 34659 7 14 2002 15 PB F 25 23
## 4989 34698 9 10 2002 15 PB F 24 37
## 4990 34701 9 10 2002 15 PB M 25 32
## 4991 34702 9 10 2002 15 PB F 27 38
## 4992 34927 10 6 2002 15 PB F 27 NA
## 4993 34928 10 6 2002 15 PB F 26 22
## 4994 34929 10 6 2002 15 PB F 26 32
## 4995 34931 10 6 2002 15 PB F 26 31
## 4996 34932 10 6 2002 15 PB F 27 33
## 4997 34934 10 6 2002 15 PB F 26 27
## 4998 34935 10 6 2002 15 PB M 26 35
## 4999 35173 11 10 2002 15 PB F 26 27
## 5000 35174 11 10 2002 15 PB F 25 31
## 5001 35176 11 10 2002 15 PB F 26 36
## 5002 35177 11 10 2002 15 PB F 24 33
## 5003 35178 11 10 2002 15 PB F 26 30
## 5004 35179 11 10 2002 15 PB F 25 22
## 5005 35180 11 10 2002 15 PB M 26 38
## 5006 35372 12 8 2002 15 PB F 26 38
## 5007 35373 12 8 2002 15 PB F 27 25
## 5008 35375 12 8 2002 15 PB M 26 36
## 5009 35376 12 8 2002 15 PB F 25 31
## 5010 35377 12 8 2002 15 PB M 28 38
## 5011 35378 12 8 2002 15 PB F 26 29
## 5012 35379 12 8 2002 15 PB F 26 NA
## 5013 35380 12 8 2002 15 PB F 25 32
## 5014 35381 12 8 2002 15 PB F 25 30
## 5015 35538 12 31 2002 15 PB F 26 31
## 5016 35540 12 31 2002 15 PB F 26 23
## 5017 35541 12 31 2002 15 PB F 24 31
## 5018 35542 12 31 2002 15 PB F 26 29
## 5019 35543 12 31 2002 15 PB F 27 34
## 5020 27393 12 29 1997 15 PL M 19 16
## 5021 27481 2 1 1998 15 PL M 19 18
## 5022 27801 5 3 1998 15 PL M 21 22
## 5023 35544 12 31 2002 15 US <NA> NA NA
## 5024 38 7 17 1977 17 NL M 33 NA
## 5025 214 9 12 1977 17 NL <NA> NA NA
## 5026 495 12 11 1977 17 NL <NA> NA NA
## 5027 971 6 8 1978 17 NL F 32 135
## 5028 1146 8 4 1978 17 NL F 32 149
## 5029 1993 8 22 1979 17 NL F 30 105
## 5030 2102 10 24 1979 17 NL M 32 133
## 5031 2191 11 17 1979 17 NL M 31 153
## 5032 2329 1 15 1980 17 NL M 35 187
## 5033 2362 1 16 1980 17 NL M 32 168
## 5034 4604 7 7 1981 17 NL F 31 126
## 5035 5740 4 28 1982 17 NL F 32 146
## 5036 5871 5 21 1982 17 NL F 32 152
## 5037 6118 6 29 1982 17 NL F NA 146
## 5038 6270 7 26 1982 17 NL F NA 139
## 5039 6281 7 26 1982 17 NL F NA 114
## 5040 6397 8 15 1982 17 NL F 31 142
## 5041 6633 9 19 1982 17 NL F 32 150
## 5042 7019 11 21 1982 17 NL F 31 143
## 5043 7200 1 12 1983 17 NL F 29 145
## 5044 7649 4 16 1983 17 NL F 28 44
## 5045 7990 6 17 1983 17 NL M 32 180
## 5046 8111 7 16 1983 17 NL M 34 216
## 5047 8323 9 10 1983 17 NL F 32 180
## 5048 8324 9 10 1983 17 NL F 32 71
## 5049 8732 12 8 1983 17 NL F 31 176
## 5050 9228 5 27 1984 17 NL F 31 98
## 5051 9407 7 31 1984 17 NL M 30 93
## 5052 9477 8 25 1984 17 NL M 31 108
## 5053 9558 9 29 1984 17 NL M 33 140
## 5054 9646 10 20 1984 17 NL M 32 152
## 5055 10538 7 23 1985 17 NL M 33 123
## 5056 10572 7 23 1985 17 NL F 32 177
## 5057 10673 8 19 1985 17 NL F 32 165
## 5058 10775 9 21 1985 17 NL F 33 168
## 5059 10883 10 12 1985 17 NL F 32 162
## 5060 11007 11 16 1985 17 NL F 32 168
## 5061 11135 12 7 1985 17 NL F 32 174
## 5062 11281 3 8 1986 17 NL <NA> NA 185
## 5063 11367 4 12 1986 17 NL F 33 192
## 5064 11369 4 12 1986 17 NL M 31 99
## 5065 11581 6 4 1986 17 NL F 33 182
## 5066 11668 7 3 1986 17 NL F 30 70
## 5067 11762 8 9 1986 17 NL M 30 116
## 5068 11838 9 6 1986 17 NL M 32 131
## 5069 11914 10 4 1986 17 NL M 30 142
## 5070 12227 1 31 1987 17 NL M 32 202
## 5071 12483 4 4 1987 17 NL F 32 162
## 5072 12668 4 25 1987 17 NL F 32 171
## 5073 12846 5 28 1987 17 NL F 33 179
## 5074 12948 6 30 1987 17 NL F 33 190
## 5075 13093 7 25 1987 17 NL F NA 68
## 5076 13235 8 25 1987 17 NL F 32 96
## 5077 13557 10 24 1987 17 NL F 30 142
## 5078 13727 11 21 1987 17 NL F 32 145
## 5079 13899 1 23 1988 17 NL F 33 161
## 5080 14237 3 20 1988 17 NL F 32 144
## 5081 14398 4 18 1988 17 NL F 33 175
## 5082 14479 5 14 1988 17 NL F 33 177
## 5083 14777 8 9 1988 17 NL F 37 158
## 5084 14878 9 11 1988 17 NL F 34 148
## 5085 15087 11 5 1988 17 NL M 32 128
## 5086 15364 1 10 1989 17 NL F 31 177
## 5087 15762 3 13 1989 17 NL F 32 183
## 5088 15922 4 2 1989 17 NL F 32 103
## 5089 15938 4 2 1989 17 NL F 31 106
## 5090 16020 5 10 1989 17 NL F 33 78
## 5091 16033 5 10 1989 17 NL F 33 88
## 5092 16042 5 10 1989 17 NL F 33 85
## 5093 16231 7 3 1989 17 NL M NA 84
## 5094 16253 7 3 1989 17 NL F NA 73
## 5095 16446 9 3 1989 17 NL F 33 118
## 5096 16581 10 8 1989 17 NL F 32 149
## 5097 16642 11 4 1989 17 NL F NA 157
## 5098 16796 12 4 1989 17 NL F 33 158
## 5099 16916 1 6 1990 17 NL F 32 165
## 5100 17164 2 24 1990 17 NL F 34 169
## 5101 17281 3 29 1990 17 NL F 32 170
## 5102 17423 4 25 1990 17 NL F 34 158
## 5103 17547 5 24 1990 17 NL M 32 104
## 5104 17842 9 22 1990 17 NL F NA 170
## 5105 17948 10 16 1990 17 NL F 32 191
## 5106 18010 11 10 1990 17 NL F 33 180
## 5107 18119 12 15 1990 17 NL M 33 164
## 5108 18249 1 11 1991 17 NL M 31 162
## 5109 18579 4 19 1991 17 NL F 32 148
## 5110 18581 4 19 1991 17 NL M 34 168
## 5111 18673 5 13 1991 17 NL M 30 195
## 5112 18852 7 12 1991 17 NL F 22 160
## 5113 26063 6 10 1997 17 NL F 34 92
## 5114 26554 7 29 1997 17 NL F 32 138
## 5115 26648 7 29 1997 17 NL M 31 NA
## 5116 26848 9 27 1997 17 NL M 32 162
## 5117 26985 10 25 1997 17 NL M 32 170
## 5118 27020 10 25 1997 17 NL F 32 145
## 5119 27932 5 28 1998 17 NL M 31 120
## 5120 28074 6 27 1998 17 NL M 34 93
## 5121 29071 1 16 1999 17 NL M 34 212
## 5122 32072 5 26 2001 17 NL M 32 127
## 5123 33075 11 17 2001 17 NL F 33 158
## 5124 33272 12 15 2001 17 NL F 32 156
## 5125 33452 2 9 2002 17 NL F 29 154
## 5126 33933 4 17 2002 17 NL F 30 174
## 5127 34012 5 15 2002 17 NL M 31 169
## 5128 34688 9 8 2002 17 NL M 32 162
## 5129 34796 10 5 2002 17 NL M 34 200
## 5130 34 7 17 1977 17 DM <NA> NA NA
## 5131 118 8 21 1977 17 DM M 33 NA
## 5132 123 8 21 1977 17 DM M 37 NA
## 5133 142 8 21 1977 17 DM F 34 NA
## 5134 187 9 12 1977 17 DM M 36 46
## 5135 189 9 12 1977 17 DM F 33 37
## 5136 202 9 12 1977 17 DM F 32 48
## 5137 209 9 12 1977 17 DM F 35 42
## 5138 287 10 17 1977 17 DM M 38 41
## 5139 288 10 17 1977 17 DM M 37 48
## 5140 290 10 17 1977 17 DM F 33 NA
## 5141 318 10 17 1977 17 DM M 33 29
## 5142 320 10 17 1977 17 DM F 35 39
## 5143 380 11 13 1977 17 DM F 33 38
## 5144 382 11 13 1977 17 DM M 37 40
## 5145 399 11 13 1977 17 DM F 36 39
## 5146 462 12 11 1977 17 DM M 36 40
## 5147 481 12 11 1977 17 DM F 35 37
## 5148 482 12 11 1977 17 DM M 37 46
## 5149 496 12 11 1977 17 DM F 36 37
## 5150 538 1 9 1978 17 DM M 36 40
## 5151 539 1 9 1978 17 DM F 34 37
## 5152 556 1 9 1978 17 DM F 36 38
## 5153 608 2 19 1978 17 DM F 34 42
## 5154 610 2 19 1978 17 DM M 37 39
## 5155 627 2 19 1978 17 DM <NA> NA NA
## 5156 680 3 12 1978 17 DM M NA NA
## 5157 707 3 12 1978 17 DM F NA NA
## 5158 785 4 9 1978 17 DM M 39 49
## 5159 788 4 9 1978 17 DM M 36 42
## 5160 792 4 9 1978 17 DM F 34 42
## 5161 807 4 9 1978 17 DM F 35 43
## 5162 888 5 18 1978 17 DM M 34 23
## 5163 891 5 18 1978 17 DM M 35 41
## 5164 894 5 18 1978 17 DM F 35 38
## 5165 905 5 18 1978 17 DM M 33 21
## 5166 910 5 18 1978 17 DM F 37 41
## 5167 941 6 8 1978 17 DM M 36 29
## 5168 947 6 8 1978 17 DM F 33 43
## 5169 966 6 8 1978 17 DM M 35 29
## 5170 975 6 8 1978 17 DM F 35 43
## 5171 1034 7 7 1978 17 DM M 35 35
## 5172 1041 7 7 1978 17 DM M 37 45
## 5173 1043 7 7 1978 17 DM M 36 47
## 5174 1052 7 7 1978 17 DM F 33 39
## 5175 1056 7 7 1978 17 DM F 36 45
## 5176 1112 8 4 1978 17 DM M 35 37
## 5177 1121 8 4 1978 17 DM M 38 50
## 5178 1123 8 4 1978 17 DM F 33 44
## 5179 1198 9 3 1978 17 DM M 37 46
## 5180 1215 9 3 1978 17 DM M 39 52
## 5181 1216 9 3 1978 17 DM M 39 49
## 5182 1226 9 3 1978 17 DM F 34 44
## 5183 1328 10 7 1978 17 DM F 35 41
## 5184 1332 10 7 1978 17 DM F 37 42
## 5185 1339 10 7 1978 17 DM M 38 48
## 5186 1408 11 4 1978 17 DM F 33 40
## 5187 1433 11 4 1978 17 DM M 39 49
## 5188 1485 12 2 1978 17 DM F 34 40
## 5189 1557 1 28 1979 17 DM F 36 48
## 5190 1559 1 28 1979 17 DM F 34 42
## 5191 1682 3 31 1979 17 DM F 35 46
## 5192 1785 5 29 1979 17 DM F 34 43
## 5193 1858 7 3 1979 17 DM F 35 41
## 5194 1877 7 3 1979 17 DM M 36 48
## 5195 1985 8 22 1979 17 DM M 37 45
## 5196 2017 9 22 1979 17 DM M 37 47
## 5197 2085 10 24 1979 17 DM M 38 46
## 5198 2149 11 17 1979 17 DM M 36 48
## 5199 2282 1 15 1980 17 DM F 36 49
## 5200 2298 1 15 1980 17 DM M 35 47
## 5201 2417 2 24 1980 17 DM M 35 47
## 5202 2550 3 9 1980 17 DM M NA 49
## 5203 2749 3 21 1980 17 DM M NA 48
## 5204 2828 4 17 1980 17 DM M NA 23
## 5205 2915 5 17 1980 17 DM M 34 34
## 5206 3044 6 22 1980 17 DM M 34 41
## 5207 3052 6 22 1980 17 DM M 35 46
## 5208 3124 7 21 1980 17 DM M 36 45
## 5209 3188 8 13 1980 17 DM M 36 46
## 5210 3255 9 7 1980 17 DM <NA> 37 35
## 5211 3258 9 7 1980 17 DM M 37 51
## 5212 3406 11 8 1980 17 DM F 37 40
## 5213 3493 11 9 1980 17 DM F 36 49
## 5214 3494 11 9 1980 17 DM M 38 47
## 5215 3656 12 16 1980 17 DM M 38 48
## 5216 3659 12 16 1980 17 DM F 37 43
## 5217 3677 12 16 1980 17 DM M 37 52
## 5218 3680 12 16 1980 17 DM F 35 46
## 5219 3721 1 11 1981 17 DM F 37 48
## 5220 4027 4 5 1981 17 DM F NA 46
## 5221 4047 4 5 1981 17 DM M NA 44
## 5222 4055 4 5 1981 17 DM M NA 43
## 5223 4071 4 5 1981 17 DM <NA> 34 24
## 5224 4169 4 5 1981 17 DM F NA 40
## 5225 4174 4 5 1981 17 DM M NA 49
## 5226 4372 5 3 1981 17 DM F 37 45
## 5227 4556 6 5 1981 17 DM F 34 26
## 5228 4603 7 7 1981 17 DM M 37 48
## 5229 4613 7 7 1981 17 DM F 34 47
## 5230 4616 7 7 1981 17 DM F 34 31
## 5231 4725 7 31 1981 17 DM F 35 32
## 5232 4765 8 30 1981 17 DM F 37 47
## 5233 4969 11 22 1981 17 DM M 41 NA
## 5234 5332 2 22 1982 17 DM F 37 43
## 5235 5363 2 22 1982 17 DM M 37 49
## 5236 5610 3 30 1982 17 DM F 36 54
## 5237 5737 4 28 1982 17 DM M 37 50
## 5238 5839 5 21 1982 17 DM F 37 44
## 5239 6130 6 29 1982 17 DM M NA 47
## 5240 6238 7 26 1982 17 DM F NA 28
## 5241 6258 7 26 1982 17 DM M NA 49
## 5242 6356 8 15 1982 17 DM F 37 49
## 5243 6362 8 15 1982 17 DM F 35 35
## 5244 6381 8 15 1982 17 DM M 37 51
## 5245 6606 9 19 1982 17 DM F 36 28
## 5246 6611 9 19 1982 17 DM F 36 39
## 5247 6630 9 19 1982 17 DM M 37 49
## 5248 6657 10 23 1982 17 DM M 38 47
## 5249 6662 10 23 1982 17 DM M 36 38
## 5250 6676 10 23 1982 17 DM M 36 46
## 5251 6681 10 23 1982 17 DM M 38 51
## 5252 6701 10 23 1982 17 DM F 36 41
## 5253 6706 10 23 1982 17 DM F 35 48
## 5254 6713 10 23 1982 17 DM M 35 46
## 5255 6725 10 23 1982 17 DM F 33 36
## 5256 6747 10 23 1982 17 DM F 35 33
## 5257 6989 11 21 1982 17 DM F 36 41
## 5258 7011 11 21 1982 17 DM F 34 32
## 5259 7169 1 12 1983 17 DM F 36 31
## 5260 7177 1 12 1983 17 DM F 35 39
## 5261 7349 2 26 1983 17 DM F 37 41
## 5262 7475 3 14 1983 17 DM F 34 36
## 5263 7505 3 14 1983 17 DM F 35 42
## 5264 7680 4 16 1983 17 DM F 37 43
## 5265 7685 4 16 1983 17 DM F 36 37
## 5266 7830 5 14 1983 17 DM M 37 49
## 5267 7836 5 14 1983 17 DM F 34 26
## 5268 7934 6 17 1983 17 DM F 33 38
## 5269 8071 7 16 1983 17 DM M 36 40
## 5270 8078 7 16 1983 17 DM F 36 41
## 5271 8172 8 15 1983 17 DM F 36 37
## 5272 8179 8 15 1983 17 DM M 35 38
## 5273 8274 9 10 1983 17 DM F 34 25
## 5274 8275 9 10 1983 17 DM M 37 41
## 5275 8297 9 10 1983 17 DM F 36 37
## 5276 8318 9 10 1983 17 DM F 36 38
## 5277 8432 10 15 1983 17 DM M 36 40
## 5278 8437 10 15 1983 17 DM F 36 39
## 5279 8441 10 15 1983 17 DM F 36 43
## 5280 8446 10 15 1983 17 DM F 35 36
## 5281 8565 11 12 1983 17 DM F 36 37
## 5282 8595 11 12 1983 17 DM M 37 38
## 5283 8601 11 12 1983 17 DM F 35 34
## 5284 8713 12 8 1983 17 DM F 35 37
## 5285 8817 2 4 1984 17 DM F 36 38
## 5286 8936 3 12 1984 17 DM F 36 41
## 5287 8983 4 9 1984 17 DM M 37 47
## 5288 9063 5 12 1984 17 DM M 34 48
## 5289 9075 5 12 1984 17 DM F 37 50
## 5290 9087 5 12 1984 17 DM F 36 36
## 5291 9088 5 12 1984 17 DM M 33 38
## 5292 9108 5 12 1984 17 DM M 36 49
## 5293 9118 5 12 1984 17 DM M 36 41
## 5294 9225 5 27 1984 17 DM F 37 43
## 5295 9239 5 27 1984 17 DM M 35 42
## 5296 9290 7 3 1984 17 DM M 36 47
## 5297 9300 7 3 1984 17 DM F 36 43
## 5298 9316 7 3 1984 17 DM M 35 31
## 5299 9321 7 3 1984 17 DM F 36 36
## 5300 9378 7 31 1984 17 DM F 36 42
## 5301 9405 7 31 1984 17 DM F 36 39
## 5302 9468 8 25 1984 17 DM F 35 42
## 5303 9481 8 25 1984 17 DM F 35 43
## 5304 9524 9 29 1984 17 DM M 33 29
## 5305 9525 9 29 1984 17 DM F 36 44
## 5306 9533 9 29 1984 17 DM M 35 25
## 5307 9547 9 29 1984 17 DM F 36 41
## 5308 9620 10 20 1984 17 DM M 33 35
## 5309 9626 10 20 1984 17 DM F 35 42
## 5310 9632 10 20 1984 17 DM F 35 42
## 5311 9635 10 20 1984 17 DM M 33 35
## 5312 9722 12 30 1984 17 DM M 32 41
## 5313 9740 12 30 1984 17 DM M 37 52
## 5314 9847 1 19 1985 17 DM M 47 40
## 5315 9927 2 16 1985 17 DM M 36 36
## 5316 9965 2 16 1985 17 DM M 36 42
## 5317 10083 3 16 1985 17 DM F 36 42
## 5318 10137 4 20 1985 17 DM M 36 47
## 5319 10197 4 20 1985 17 DM M 35 42
## 5320 10370 5 23 1985 17 DM M 35 40
## 5321 10373 5 23 1985 17 DM M 34 42
## 5322 10457 6 15 1985 17 DM M 36 41
## 5323 10481 6 15 1985 17 DM <NA> NA NA
## 5324 10545 7 23 1985 17 DM M 34 44
## 5325 10550 7 23 1985 17 DM F 34 31
## 5326 10638 8 19 1985 17 DM F 39 38
## 5327 10649 8 19 1985 17 DM F 34 34
## 5328 10732 9 21 1985 17 DM M 37 50
## 5329 10744 9 21 1985 17 DM F 33 41
## 5330 10750 9 21 1985 17 DM F 37 38
## 5331 10848 10 12 1985 17 DM F 38 44
## 5332 10852 10 12 1985 17 DM F 37 36
## 5333 10860 10 12 1985 17 DM F 37 40
## 5334 10966 11 16 1985 17 DM M 40 48
## 5335 10971 11 16 1985 17 DM F 37 38
## 5336 10978 11 16 1985 17 DM F 36 39
## 5337 11098 12 7 1985 17 DM M 37 37
## 5338 11110 12 7 1985 17 DM M 38 46
## 5339 11238 3 8 1986 17 DM F 35 38
## 5340 11344 4 12 1986 17 DM F 36 43
## 5341 11456 5 10 1986 17 DM M 39 50
## 5342 11457 5 10 1986 17 DM M 37 37
## 5343 11554 6 4 1986 17 DM M 36 35
## 5344 11637 7 3 1986 17 DM M 35 37
## 5345 11647 7 3 1986 17 DM F 35 36
## 5346 11736 8 9 1986 17 DM M 36 41
## 5347 11809 9 6 1986 17 DM M 37 44
## 5348 11903 10 4 1986 17 DM M 35 46
## 5349 11966 11 15 1986 17 DM M 35 48
## 5350 11984 11 15 1986 17 DM F 36 49
## 5351 12071 12 14 1986 17 DM M 35 48
## 5352 12339 3 1 1987 17 DM M 35 31
## 5353 12351 3 1 1987 17 DM M 35 47
## 5354 12474 4 4 1987 17 DM M 34 49
## 5355 12626 4 25 1987 17 DM M 36 49
## 5356 12754 5 28 1987 17 DM M 35 47
## 5357 12897 6 30 1987 17 DM M 37 36
## 5358 14657 7 14 1988 17 DM M 36 32
## 5359 16016 5 10 1989 17 DM F 36 34
## 5360 16091 6 3 1989 17 DM F 37 41
## 5361 16330 7 29 1989 17 DM F 37 40
## 5362 16348 7 29 1989 17 DM M 38 51
## 5363 16631 11 4 1989 17 DM M 37 38
## 5364 16780 12 4 1989 17 DM M 37 43
## 5365 16914 1 6 1990 17 DM M NA NA
## 5366 17414 4 25 1990 17 DM F 37 48
## 5367 17661 7 21 1990 17 DM F 36 41
## 5368 17755 8 16 1990 17 DM F 37 38
## 5369 17827 9 22 1990 17 DM F NA 48
## 5370 17908 10 16 1990 17 DM F 36 32
## 5371 17912 10 16 1990 17 DM M 37 49
## 5372 17925 10 16 1990 17 DM M 37 47
## 5373 17944 10 16 1990 17 DM F 35 40
## 5374 17972 11 10 1990 17 DM M 36 39
## 5375 17977 11 10 1990 17 DM F 37 43
## 5376 18007 11 10 1990 17 DM F 37 44
## 5377 18075 12 15 1990 17 DM M 37 50
## 5378 18081 12 15 1990 17 DM F 37 44
## 5379 18101 12 15 1990 17 DM F 37 44
## 5380 18205 1 11 1991 17 DM F 36 40
## 5381 18333 2 16 1991 17 DM F 36 40
## 5382 18456 3 13 1991 17 DM F 37 45
## 5383 18469 3 13 1991 17 DM F 36 42
## 5384 18569 4 19 1991 17 DM F 36 51
## 5385 18655 5 13 1991 17 DM M 35 NA
## 5386 18667 5 13 1991 17 DM F 35 42
## 5387 18945 8 7 1991 17 DM F 37 65
## 5388 19069 9 10 1991 17 DM M 36 55
## 5389 19070 9 10 1991 17 DM M NA NA
## 5390 19099 10 10 1991 17 DM F 36 41
## 5391 19105 10 10 1991 17 DM M 37 53
## 5392 19259 11 14 1991 17 DM M 36 51
## 5393 19265 11 14 1991 17 DM F 35 38
## 5394 19374 12 7 1991 17 DM F 36 38
## 5395 19392 12 7 1991 17 DM M 37 50
## 5396 19558 1 8 1992 17 DM F 36 36
## 5397 19561 1 8 1992 17 DM M 35 47
## 5398 19683 2 7 1992 17 DM F 36 38
## 5399 19687 2 7 1992 17 DM M 36 49
## 5400 19722 2 7 1992 17 DM F 36 37
## 5401 19760 3 7 1992 17 DM M 37 49
## 5402 19776 3 7 1992 17 DM F 36 38
## 5403 19796 3 7 1992 17 DM M 35 47
## 5404 19803 3 7 1992 17 DM M 37 52
## 5405 19861 4 4 1992 17 DM M 36 46
## 5406 19864 4 4 1992 17 DM M 37 49
## 5407 19865 4 4 1992 17 DM M 37 49
## 5408 19868 4 4 1992 17 DM M 37 52
## 5409 19870 4 4 1992 17 DM F 35 51
## 5410 19873 4 4 1992 17 DM M 37 52
## 5411 19881 4 4 1992 17 DM M 36 NA
## 5412 19882 4 4 1992 17 DM M 36 49
## 5413 19942 5 2 1992 17 DM M 33 25
## 5414 19945 5 2 1992 17 DM M 38 50
## 5415 19946 5 2 1992 17 DM F 35 42
## 5416 19966 5 2 1992 17 DM M 36 51
## 5417 20009 5 30 1992 17 DM M 35 37
## 5418 20010 5 30 1992 17 DM M 36 51
## 5419 20015 5 30 1992 17 DM M 21 37
## 5420 20021 5 30 1992 17 DM F 36 38
## 5421 20039 5 30 1992 17 DM M 36 52
## 5422 20090 7 3 1992 17 DM M 36 42
## 5423 20101 7 3 1992 17 DM M 34 34
## 5424 20113 7 3 1992 17 DM M 36 53
## 5425 20177 7 30 1992 17 DM M 36 47
## 5426 20189 7 30 1992 17 DM M 36 44
## 5427 20203 7 30 1992 17 DM M 36 52
## 5428 20256 8 29 1992 17 DM M 37 49
## 5429 20273 8 29 1992 17 DM M 36 50
## 5430 20338 9 26 1992 17 DM F 31 35
## 5431 20350 9 26 1992 17 DM M 35 49
## 5432 20359 9 26 1992 17 DM M 33 55
## 5433 20436 10 18 1992 17 DM M 36 44
## 5434 20453 10 18 1992 17 DM M NA NA
## 5435 20457 10 18 1992 17 DM M 36 48
## 5436 20469 10 18 1992 17 DM M 33 38
## 5437 20524 12 21 1992 17 DM M 36 51
## 5438 20528 12 21 1992 17 DM M 37 55
## 5439 20538 12 21 1992 17 DM M 35 45
## 5440 20540 12 21 1992 17 DM <NA> 36 44
## 5441 20541 12 21 1992 17 DM M 34 35
## 5442 20582 1 24 1993 17 DM M 36 53
## 5443 20598 1 24 1993 17 DM M 36 40
## 5444 20600 1 24 1993 17 DM M 37 54
## 5445 20603 1 24 1993 17 DM M 36 48
## 5446 20604 1 24 1993 17 DM M 34 NA
## 5447 20608 1 24 1993 17 DM F 36 48
## 5448 20635 2 19 1993 17 DM M 33 51
## 5449 20645 2 19 1993 17 DM M 33 50
## 5450 20651 2 19 1993 17 DM F 35 46
## 5451 20657 2 19 1993 17 DM F 32 40
## 5452 20658 2 19 1993 17 DM M 34 51
## 5453 20702 3 17 1993 17 DM M 36 50
## 5454 20703 3 17 1993 17 DM M 37 51
## 5455 20710 3 17 1993 17 DM M 37 52
## 5456 20717 3 17 1993 17 DM F NA 47
## 5457 20730 3 17 1993 17 DM F 33 58
## 5458 20732 3 17 1993 17 DM M 34 40
## 5459 20842 5 22 1993 17 DM M 36 52
## 5460 20854 5 22 1993 17 DM M 36 53
## 5461 20901 6 18 1993 17 DM M 37 51
## 5462 20927 6 18 1993 17 DM M 37 51
## 5463 20972 7 14 1993 17 DM M 36 46
## 5464 20985 7 14 1993 17 DM M 37 47
## 5465 20998 7 14 1993 17 DM M 34 55
## 5466 21040 8 19 1993 17 DM M 36 55
## 5467 21041 8 19 1993 17 DM M 37 48
## 5468 21048 8 19 1993 17 DM M 35 47
## 5469 21110 9 16 1993 17 DM M 37 56
## 5470 21111 9 16 1993 17 DM M 36 51
## 5471 21165 10 15 1993 17 DM M NA NA
## 5472 21168 10 15 1993 17 DM M 37 56
## 5473 21222 11 13 1993 17 DM M 36 48
## 5474 21234 11 13 1993 17 DM M 36 53
## 5475 21281 12 14 1993 17 DM M 36 47
## 5476 21343 2 2 1994 17 DM M 36 51
## 5477 21349 2 2 1994 17 DM M 37 47
## 5478 21351 2 2 1994 17 DM M 36 49
## 5479 21384 2 20 1994 17 DM M 36 43
## 5480 21386 2 20 1994 17 DM M 39 42
## 5481 21387 2 20 1994 17 DM F 36 47
## 5482 21388 2 20 1994 17 DM M 38 49
## 5483 21393 2 20 1994 17 DM M 38 52
## 5484 21394 2 20 1994 17 DM F 37 43
## 5485 21399 2 20 1994 17 DM M 39 44
## 5486 21437 3 11 1994 17 DM F 35 45
## 5487 21439 3 11 1994 17 DM M 37 52
## 5488 21443 3 11 1994 17 DM M 37 57
## 5489 21497 4 10 1994 17 DM M 36 51
## 5490 21500 4 10 1994 17 DM F 35 45
## 5491 21508 4 10 1994 17 DM M 35 31
## 5492 21563 5 18 1994 17 DM M NA NA
## 5493 21567 5 18 1994 17 DM M 37 51
## 5494 21569 5 18 1994 17 DM M 37 38
## 5495 21614 6 14 1994 17 DM F 36 24
## 5496 21615 6 14 1994 17 DM M 36 40
## 5497 21618 6 14 1994 17 DM M 37 50
## 5498 21626 6 14 1994 17 DM F 37 41
## 5499 21659 7 8 1994 17 DM F 35 30
## 5500 21660 7 8 1994 17 DM M 37 43
## 5501 21664 7 8 1994 17 DM M 37 52
## 5502 21707 8 17 1994 17 DM F 35 36
## 5503 21710 8 17 1994 17 DM M 36 48
## 5504 21719 8 17 1994 17 DM M 36 51
## 5505 21756 9 6 1994 17 DM F 36 40
## 5506 21766 9 6 1994 17 DM M 36 39
## 5507 21770 9 6 1994 17 DM M 36 55
## 5508 21813 10 12 1994 17 DM F 36 45
## 5509 21829 10 12 1994 17 DM M 37 41
## 5510 21832 10 12 1994 17 DM M 37 52
## 5511 21836 10 12 1994 17 DM F 37 42
## 5512 21878 11 1 1994 17 DM F 35 42
## 5513 21888 11 1 1994 17 DM M 36 41
## 5514 21898 11 1 1994 17 DM F 36 42
## 5515 21945 12 4 1994 17 DM M 37 42
## 5516 21948 12 4 1994 17 DM M 36 41
## 5517 21961 12 4 1994 17 DM M 37 52
## 5518 22020 1 12 1995 17 DM M 36 44
## 5519 22022 1 12 1995 17 DM M 36 54
## 5520 22043 2 4 1995 17 DM M 37 48
## 5521 22065 2 4 1995 17 DM M NA NA
## 5522 22114 3 4 1995 17 DM F 38 47
## 5523 22116 3 4 1995 17 DM M 37 57
## 5524 22118 3 4 1995 17 DM M 37 47
## 5525 22171 4 1 1995 17 DM M 38 53
## 5526 22178 4 1 1995 17 DM F 16 10
## 5527 22184 4 1 1995 17 DM M 37 55
## 5528 22185 4 1 1995 17 DM M 37 49
## 5529 22187 4 1 1995 17 DM M 38 56
## 5530 22189 4 1 1995 17 DM F 37 45
## 5531 22231 4 29 1995 17 DM F 34 46
## 5532 22242 4 29 1995 17 DM F 37 52
## 5533 22245 4 29 1995 17 DM M 37 57
## 5534 22300 6 7 1995 17 DM F 37 50
## 5535 22302 6 7 1995 17 DM F 36 44
## 5536 22311 6 7 1995 17 DM M 38 57
## 5537 22366 6 27 1995 17 DM F 38 56
## 5538 22372 6 27 1995 17 DM M 38 39
## 5539 22377 6 27 1995 17 DM F 37 26
## 5540 22380 6 27 1995 17 DM M 38 37
## 5541 22382 6 27 1995 17 DM M 36 41
## 5542 22437 7 20 1995 17 DM M 33 42
## 5543 22442 7 20 1995 17 DM F 32 45
## 5544 22458 7 20 1995 17 DM F 39 50
## 5545 22470 7 20 1995 17 DM M 34 46
## 5546 22472 7 20 1995 17 DM M 34 56
## 5547 22545 8 26 1995 17 DM M 36 46
## 5548 22559 8 26 1995 17 DM F 34 60
## 5549 22569 8 26 1995 17 DM M 37 58
## 5550 22573 8 26 1995 17 DM M 37 53
## 5551 22697 9 23 1995 17 DM M 34 50
## 5552 22709 9 23 1995 17 DM F 35 28
## 5553 22718 9 23 1995 17 DM M 34 53
## 5554 22731 9 23 1995 17 DM F 35 51
## 5555 22732 9 23 1995 17 DM M 35 56
## 5556 22834 10 28 1995 17 DM F 35 40
## 5557 22861 10 28 1995 17 DM M 35 48
## 5558 22894 10 28 1995 17 DM M 37 52
## 5559 22898 10 28 1995 17 DM F 37 62
## 5560 23019 12 2 1995 17 DM F 39 50
## 5561 23024 12 2 1995 17 DM F 33 29
## 5562 23040 12 2 1995 17 DM M 37 54
## 5563 23128 12 21 1995 17 DM F 38 57
## 5564 23141 12 21 1995 17 DM F 36 36
## 5565 23161 12 21 1995 17 DM M 38 54
## 5566 23217 1 27 1996 17 DM M 36 25
## 5567 23218 1 27 1996 17 DM M 37 25
## 5568 23224 1 27 1996 17 DM F 39 49
## 5569 23230 1 27 1996 17 DM M 36 51
## 5570 23235 1 27 1996 17 DM M 37 42
## 5571 23253 1 27 1996 17 DM M 36 58
## 5572 23264 1 27 1996 17 DM M 38 55
## 5573 23348 2 24 1996 17 DM F 36 34
## 5574 23360 2 24 1996 17 DM F 37 33
## 5575 23375 2 24 1996 17 DM M 37 45
## 5576 23386 2 24 1996 17 DM M 38 52
## 5577 23390 2 24 1996 17 DM F 34 54
## 5578 23401 2 24 1996 17 DM M 38 54
## 5579 23499 3 23 1996 17 DM F 37 38
## 5580 23544 3 23 1996 17 DM M 37 45
## 5581 23589 3 23 1996 17 DM F 36 42
## 5582 23653 4 14 1996 17 DM M 38 40
## 5583 23662 4 14 1996 17 DM M 38 39
## 5584 23673 4 14 1996 17 DM M 37 49
## 5585 23686 4 14 1996 17 DM M 37 45
## 5586 23701 4 14 1996 17 DM F 38 NA
## 5587 23705 4 14 1996 17 DM M 38 51
## 5588 23920 5 23 1996 17 DM M 36 49
## 5589 23926 5 23 1996 17 DM F 37 44
## 5590 23928 5 23 1996 17 DM M 38 45
## 5591 23940 5 23 1996 17 DM F 36 42
## 5592 24028 6 13 1996 17 DM M 39 42
## 5593 24058 6 13 1996 17 DM M 37 49
## 5594 24070 6 13 1996 17 DM M 36 22
## 5595 24072 6 13 1996 17 DM F 36 51
## 5596 24080 6 13 1996 17 DM M 37 50
## 5597 24179 7 20 1996 17 DM M 35 44
## 5598 24193 7 20 1996 17 DM M 36 47
## 5599 24206 7 20 1996 17 DM M 37 49
## 5600 24218 7 20 1996 17 DM M 37 53
## 5601 24293 8 14 1996 17 DM M 38 44
## 5602 24321 8 14 1996 17 DM M 37 46
## 5603 24328 8 14 1996 17 DM M 38 49
## 5604 24390 9 21 1996 17 DM M 36 48
## 5605 24401 9 21 1996 17 DM M 37 44
## 5606 24427 9 21 1996 17 DM F 36 46
## 5607 24442 9 21 1996 17 DM M 37 50
## 5608 24458 9 21 1996 17 DM M 37 50
## 5609 24543 10 12 1996 17 DM M 37 44
## 5610 24557 10 12 1996 17 DM M 37 41
## 5611 24560 10 12 1996 17 DM F 35 27
## 5612 24574 10 12 1996 17 DM M 36 48
## 5613 24583 10 12 1996 17 DM M 38 43
## 5614 24591 10 12 1996 17 DM F 36 45
## 5615 24677 11 16 1996 17 DM M 38 42
## 5616 24688 11 16 1996 17 DM M 38 47
## 5617 24704 11 16 1996 17 DM F 35 34
## 5618 24706 11 16 1996 17 DM M 36 51
## 5619 24795 12 18 1996 17 DM M 37 48
## 5620 24810 12 18 1996 17 DM M 36 52
## 5621 24819 12 18 1996 17 DM F 36 35
## 5622 24841 12 18 1996 17 DM M 36 41
## 5623 24849 12 18 1996 17 DM M 35 40
## 5624 24851 12 18 1996 17 DM M 40 46
## 5625 24931 2 8 1997 17 DM M 35 53
## 5626 24957 2 8 1997 17 DM M 38 48
## 5627 24965 2 8 1997 17 DM M 38 43
## 5628 24970 2 8 1997 17 DM F 34 38
## 5629 24976 2 8 1997 17 DM M 36 50
## 5630 24978 2 8 1997 17 DM F 36 42
## 5631 24989 2 8 1997 17 DM M 38 49
## 5632 25003 2 8 1997 17 DM M 34 41
## 5633 25013 2 8 1997 17 DM F 34 46
## 5634 25165 3 15 1997 17 DM M 37 51
## 5635 25177 3 15 1997 17 DM M 35 40
## 5636 25186 3 15 1997 17 DM F 37 51
## 5637 25188 3 15 1997 17 DM M 37 50
## 5638 25204 3 15 1997 17 DM M 37 47
## 5639 25207 3 15 1997 17 DM F 36 41
## 5640 25223 3 15 1997 17 DM M 34 43
## 5641 25225 3 15 1997 17 DM M 34 44
## 5642 25240 3 15 1997 17 DM M 36 47
## 5643 25243 3 15 1997 17 DM F 35 48
## 5644 25267 3 15 1997 17 DM M 35 50
## 5645 25276 3 15 1997 17 DM M 39 49
## 5646 25426 4 12 1997 17 DM M 37 51
## 5647 25439 4 12 1997 17 DM M 37 49
## 5648 25461 4 12 1997 17 DM F 34 49
## 5649 25471 4 12 1997 17 DM M 37 48
## 5650 25485 4 12 1997 17 DM F 35 44
## 5651 25516 4 12 1997 17 DM M 33 22
## 5652 25531 4 12 1997 17 DM M 37 50
## 5653 25554 4 12 1997 17 DM M 35 44
## 5654 25693 5 10 1997 17 DM M 36 48
## 5655 25708 5 10 1997 17 DM M 37 37
## 5656 25718 5 10 1997 17 DM M 37 47
## 5657 25731 5 10 1997 17 DM M 37 49
## 5658 25767 5 10 1997 17 DM M 35 33
## 5659 25774 5 10 1997 17 DM F 36 43
## 5660 25792 5 10 1997 17 DM M 36 42
## 5661 25806 5 10 1997 17 DM M 38 49
## 5662 25830 5 10 1997 17 DM F 37 40
## 5663 26046 6 10 1997 17 DM M 36 42
## 5664 26060 6 10 1997 17 DM M 35 50
## 5665 26062 6 10 1997 17 DM F 36 43
## 5666 26079 6 10 1997 17 DM M 37 47
## 5667 26090 6 10 1997 17 DM M 36 31
## 5668 26092 6 10 1997 17 DM F 36 38
## 5669 26108 6 10 1997 17 DM M 36 36
## 5670 26111 6 10 1997 17 DM M 33 44
## 5671 26121 6 10 1997 17 DM M 38 49
## 5672 26246 7 9 1997 17 DM M 38 48
## 5673 26318 7 9 1997 17 DM M 37 41
## 5674 26329 7 9 1997 17 DM M 36 46
## 5675 26363 7 9 1997 17 DM F 35 41
## 5676 26382 7 9 1997 17 DM F 35 39
## 5677 26541 7 10 1997 17 DM M 38 39
## 5678 26548 7 29 1997 17 DM M 37 49
## 5679 26566 7 29 1997 17 DM M 37 45
## 5680 26574 7 29 1997 17 DM M 35 43
## 5681 26588 7 29 1997 17 DM F 35 42
## 5682 26600 7 29 1997 17 DM M 35 38
## 5683 26642 7 29 1997 17 DM M 39 51
## 5684 26790 9 27 1997 17 DM M 36 48
## 5685 26805 9 27 1997 17 DM M 35 43
## 5686 26806 9 27 1997 17 DM F 34 49
## 5687 26841 9 27 1997 17 DM M 35 47
## 5688 26850 9 27 1997 17 DM F 35 40
## 5689 26957 10 25 1997 17 DM F 34 43
## 5690 26991 10 25 1997 17 DM M 37 46
## 5691 26996 10 25 1997 17 DM F 35 45
## 5692 27003 10 25 1997 17 DM F 35 38
## 5693 27026 10 25 1997 17 DM F 34 45
## 5694 27027 10 25 1997 17 DM M 35 47
## 5695 27134 11 22 1997 17 DM M 36 47
## 5696 27141 11 22 1997 17 DM M 36 47
## 5697 27153 11 22 1997 17 DM M 35 48
## 5698 27173 11 22 1997 17 DM M 36 42
## 5699 27206 11 22 1997 17 DM F 35 45
## 5700 27230 11 22 1997 17 DM F 34 46
## 5701 27241 11 22 1997 17 DM F 34 40
## 5702 27299 12 28 1997 17 DM F 35 44
## 5703 27302 12 28 1997 17 DM M 35 46
## 5704 27311 12 28 1997 17 DM M 36 44
## 5705 27317 12 28 1997 17 DM M 39 45
## 5706 27322 12 28 1997 17 DM F 38 39
## 5707 27341 12 28 1997 17 DM F 36 38
## 5708 27342 12 28 1997 17 DM F 34 43
## 5709 27427 1 31 1998 17 DM F 35 45
## 5710 27436 1 31 1998 17 DM M 36 46
## 5711 27443 1 31 1998 17 DM M 37 47
## 5712 27447 1 31 1998 17 DM F 36 39
## 5713 27471 1 31 1998 17 DM F 35 43
## 5714 27548 3 1 1998 17 DM M 36 NA
## 5715 27551 3 1 1998 17 DM F 33 NA
## 5716 27560 3 1 1998 17 DM F 36 NA
## 5717 27562 3 1 1998 17 DM F 35 NA
## 5718 27597 3 1 1998 17 DM F 35 NA
## 5719 27687 3 29 1998 17 DM F 35 46
## 5720 27688 3 29 1998 17 DM F 35 37
## 5721 27695 3 29 1998 17 DM F 35 38
## 5722 27696 3 29 1998 17 DM M 36 56
## 5723 27699 3 29 1998 17 DM M 36 49
## 5724 27700 3 29 1998 17 DM M 35 43
## 5725 27718 3 29 1998 17 DM F 33 45
## 5726 27720 3 29 1998 17 DM F 35 49
## 5727 27721 3 29 1998 17 DM F 37 47
## 5728 27729 3 29 1998 17 DM F 34 43
## 5729 27742 3 29 1998 17 DM F 36 40
## 5730 27748 5 2 1998 17 DM M 36 50
## 5731 27756 5 2 1998 17 DM F 36 41
## 5732 27759 5 2 1998 17 DM M 37 50
## 5733 27764 5 2 1998 17 DM F 35 53
## 5734 27765 5 2 1998 17 DM F 36 44
## 5735 27770 5 2 1998 17 DM <NA> NA NA
## 5736 27772 5 2 1998 17 DM M 34 43
## 5737 27775 5 2 1998 17 DM F 35 46
## 5738 27782 5 2 1998 17 DM F 36 44
## 5739 27791 5 2 1998 17 DM M 37 47
## 5740 27872 5 28 1998 17 DM F 36 44
## 5741 27876 5 28 1998 17 DM F 37 38
## 5742 27901 5 28 1998 17 DM M 39 43
## 5743 27917 5 28 1998 17 DM F 36 50
## 5744 27921 5 28 1998 17 DM F 36 44
## 5745 27925 5 28 1998 17 DM M 34 38
## 5746 27929 5 28 1998 17 DM F 36 44
## 5747 27931 5 28 1998 17 DM M 36 40
## 5748 27933 5 28 1998 17 DM M 37 44
## 5749 28021 6 27 1998 17 DM M 39 47
## 5750 28061 6 27 1998 17 DM F 36 33
## 5751 28080 6 27 1998 17 DM F 36 42
## 5752 28082 6 27 1998 17 DM F 37 39
## 5753 28171 7 18 1998 17 DM F 35 45
## 5754 28183 7 18 1998 17 DM M 36 52
## 5755 28214 7 18 1998 17 DM F 34 38
## 5756 28224 7 18 1998 17 DM M 36 47
## 5757 28234 7 18 1998 17 DM F 36 44
## 5758 28351 8 22 1998 17 DM M 35 23
## 5759 28352 8 22 1998 17 DM F 35 37
## 5760 28354 8 22 1998 17 DM F 36 45
## 5761 28356 8 22 1998 17 DM F 36 41
## 5762 28638 9 21 1998 17 DM M 36 35
## 5763 28640 9 21 1998 17 DM F 36 38
## 5764 28643 9 21 1998 17 DM M 36 45
## 5765 28644 9 21 1998 17 DM F 35 25
## 5766 28647 9 21 1998 17 DM F 35 40
## 5767 28681 10 24 1998 17 DM M 36 35
## 5768 28683 10 24 1998 17 DM M 36 47
## 5769 28685 10 24 1998 17 DM F 36 37
## 5770 28686 10 24 1998 17 DM F 35 40
## 5771 28687 10 24 1998 17 DM F 35 32
## 5772 28688 10 24 1998 17 DM M 37 41
## 5773 28822 11 21 1998 17 DM M 36 42
## 5774 28823 11 21 1998 17 DM M 34 44
## 5775 28824 11 21 1998 17 DM M 36 49
## 5776 28825 11 21 1998 17 DM F 34 42
## 5777 28826 11 21 1998 17 DM F 36 38
## 5778 28827 11 21 1998 17 DM M 36 33
## 5779 28828 11 21 1998 17 DM F 35 41
## 5780 28948 12 22 1998 17 DM M 36 37
## 5781 28949 12 22 1998 17 DM F 35 39
## 5782 28950 12 22 1998 17 DM M 36 37
## 5783 28951 12 22 1998 17 DM F 35 42
## 5784 28952 12 22 1998 17 DM M 36 46
## 5785 28954 12 22 1998 17 DM F 35 46
## 5786 28955 12 22 1998 17 DM F 35 40
## 5787 28956 12 22 1998 17 DM M 36 45
## 5788 29061 1 16 1999 17 DM F 33 40
## 5789 29063 1 16 1999 17 DM M 35 46
## 5790 29064 1 16 1999 17 DM F 36 46
## 5791 29065 1 16 1999 17 DM F 36 46
## 5792 29066 1 16 1999 17 DM F 36 39
## 5793 29067 1 16 1999 17 DM M 36 41
## 5794 29068 1 16 1999 17 DM M 35 44
## 5795 29069 1 16 1999 17 DM M 35 36
## 5796 29070 1 16 1999 17 DM F 35 42
## 5797 29202 2 20 1999 17 DM M 37 47
## 5798 29204 2 20 1999 17 DM F 35 39
## 5799 29205 2 20 1999 17 DM F 34 41
## 5800 29208 2 20 1999 17 DM M 36 39
## 5801 29209 2 20 1999 17 DM F 36 47
## 5802 29211 2 20 1999 17 DM M 38 44
## 5803 29341 3 14 1999 17 DM F 34 41
## 5804 29342 3 14 1999 17 DM M 37 48
## 5805 29344 3 14 1999 17 DM M 36 43
## 5806 29345 3 14 1999 17 DM F 35 46
## 5807 29346 3 14 1999 17 DM F 35 41
## 5808 29463 4 17 1999 17 DM F 34 40
## 5809 29464 4 17 1999 17 DM M 34 19
## 5810 29465 4 17 1999 17 DM F NA 40
## 5811 29466 4 17 1999 17 DM F 36 46
## 5812 29468 4 17 1999 17 DM M 36 42
## 5813 29469 4 17 1999 17 DM M 37 47
## 5814 29470 4 17 1999 17 DM F 34 39
## 5815 29471 4 17 1999 17 DM M 37 43
## 5816 29596 5 15 1999 17 DM F 37 45
## 5817 29597 5 15 1999 17 DM M 36 26
## 5818 29601 5 15 1999 17 DM F 36 43
## 5819 29602 5 15 1999 17 DM F 35 41
## 5820 29603 5 15 1999 17 DM F 34 44
## 5821 29736 6 12 1999 17 DM F 35 46
## 5822 29737 6 12 1999 17 DM F 35 41
## 5823 29739 6 12 1999 17 DM M 36 31
## 5824 29741 6 12 1999 17 DM F 34 44
## 5825 29743 6 12 1999 17 DM F 35 42
## 5826 29885 10 9 1999 17 DM M 38 48
## 5827 29889 10 9 1999 17 DM M 36 48
## 5828 29971 11 6 1999 17 DM M 35 31
## 5829 29975 11 6 1999 17 DM M 36 48
## 5830 29976 11 6 1999 17 DM M 38 49
## 5831 30088 12 5 1999 17 DM M 35 41
## 5832 30196 1 8 2000 17 DM M 37 52
## 5833 30197 1 8 2000 17 DM F 34 43
## 5834 30328 2 5 2000 17 DM F 34 42
## 5835 30331 2 5 2000 17 DM M 34 36
## 5836 30470 3 4 2000 17 DM F 34 41
## 5837 30471 3 4 2000 17 DM F 36 44
## 5838 30472 3 4 2000 17 DM M 36 49
## 5839 30473 3 4 2000 17 DM M 37 33
## 5840 30475 3 4 2000 17 DM M 36 49
## 5841 30477 3 4 2000 17 DM M 36 40
## 5842 30604 4 30 2000 17 DM F 32 33
## 5843 30605 4 30 2000 17 DM M 37 52
## 5844 30606 4 30 2000 17 DM F 33 29
## 5845 30647 4 30 2000 17 DM M 37 46
## 5846 30648 4 30 2000 17 DM F 36 46
## 5847 30767 6 3 2000 17 DM F 34 38
## 5848 30768 6 3 2000 17 DM M 37 43
## 5849 30772 6 3 2000 17 DM F 35 43
## 5850 30969 7 1 2000 17 DM M 36 48
## 5851 30974 7 1 2000 17 DM F 36 43
## 5852 30978 7 1 2000 17 DM M 36 45
## 5853 30979 7 1 2000 17 DM F 34 43
## 5854 31134 7 22 2000 17 DM F 34 42
## 5855 31136 7 22 2000 17 DM M 37 46
## 5856 31137 7 22 2000 17 DM M 37 45
## 5857 31141 7 22 2000 17 DM F 37 51
## 5858 31260 8 25 2000 17 DM M 37 43
## 5859 31261 8 25 2000 17 DM M 37 47
## 5860 31263 8 25 2000 17 DM F 35 38
## 5861 31267 8 25 2000 17 DM F 36 45
## 5862 31411 9 30 2000 17 DM F 34 42
## 5863 31412 9 30 2000 17 DM M 35 43
## 5864 31413 9 30 2000 17 DM F 36 43
## 5865 31415 9 30 2000 17 DM F 37 34
## 5866 31416 9 30 2000 17 DM M 37 42
## 5867 31419 9 30 2000 17 DM M 37 47
## 5868 31420 9 30 2000 17 DM M 36 47
## 5869 31536 11 25 2000 17 DM M 37 47
## 5870 31538 11 25 2000 17 DM M 38 45
## 5871 31539 11 25 2000 17 DM F 34 42
## 5872 31540 11 25 2000 17 DM F 36 42
## 5873 31541 11 25 2000 17 DM F 35 42
## 5874 31542 11 25 2000 17 DM M 36 49
## 5875 31645 12 22 2000 17 DM M 36 50
## 5876 31646 12 22 2000 17 DM F 36 42
## 5877 31647 12 22 2000 17 DM F 35 43
## 5878 31648 12 22 2000 17 DM M 36 47
## 5879 31650 12 22 2000 17 DM M 36 48
## 5880 31652 12 22 2000 17 DM M 36 45
## 5881 31731 1 21 2001 17 DM M 37 49
## 5882 31732 1 21 2001 17 DM M 36 48
## 5883 31733 1 21 2001 17 DM F 37 43
## 5884 31734 1 21 2001 17 DM F 37 41
## 5885 31736 1 21 2001 17 DM F 34 41
## 5886 31801 3 3 2001 17 DM M 38 NA
## 5887 31802 3 3 2001 17 DM F 38 58
## 5888 31805 3 3 2001 17 DM F 37 41
## 5889 31806 3 3 2001 17 DM F 36 40
## 5890 31871 3 24 2001 17 DM F 37 55
## 5891 31873 3 24 2001 17 DM M 36 NA
## 5892 31874 3 24 2001 17 DM F 37 48
## 5893 31875 3 24 2001 17 DM M 38 48
## 5894 31877 3 24 2001 17 DM M 38 45
## 5895 31878 3 24 2001 17 DM F 38 56
## 5896 31879 3 24 2001 17 DM F 35 45
## 5897 31962 4 21 2001 17 DM F 37 50
## 5898 31965 4 21 2001 17 DM M 36 49
## 5899 31966 4 21 2001 17 DM M 36 49
## 5900 31968 4 21 2001 17 DM M 36 37
## 5901 31970 4 21 2001 17 DM F 36 50
## 5902 31971 4 21 2001 17 DM M 35 50
## 5903 31972 4 21 2001 17 DM M 37 50
## 5904 32063 5 26 2001 17 DM M 36 52
## 5905 32064 5 26 2001 17 DM M 36 48
## 5906 32065 5 26 2001 17 DM M 35 NA
## 5907 32066 5 26 2001 17 DM M 37 46
## 5908 32067 5 26 2001 17 DM F 36 41
## 5909 32068 5 26 2001 17 DM M 35 47
## 5910 32070 5 26 2001 17 DM F 37 47
## 5911 32071 5 26 2001 17 DM M 37 49
## 5912 32189 6 25 2001 17 DM M 36 29
## 5913 32191 6 25 2001 17 DM F 36 51
## 5914 32192 6 25 2001 17 DM M 35 47
## 5915 32193 6 25 2001 17 DM M 37 40
## 5916 32195 6 25 2001 17 DM M 37 46
## 5917 32196 6 25 2001 17 DM F 35 43
## 5918 32197 6 25 2001 17 DM M 37 50
## 5919 32198 6 25 2001 17 DM M 37 50
## 5920 32199 6 25 2001 17 DM M 37 30
## 5921 32200 6 25 2001 17 DM F 37 46
## 5922 32422 8 25 2001 17 DM M 36 41
## 5923 32424 8 25 2001 17 DM F 36 50
## 5924 32427 8 25 2001 17 DM M 36 49
## 5925 32429 8 25 2001 17 DM F NA 36
## 5926 32431 8 25 2001 17 DM M 36 44
## 5927 32639 9 22 2001 17 DM M 36 44
## 5928 32643 9 22 2001 17 DM F 35 57
## 5929 32644 9 22 2001 17 DM M 35 48
## 5930 32645 9 22 2001 17 DM F 33 26
## 5931 32647 9 22 2001 17 DM M 36 49
## 5932 32651 9 22 2001 17 DM F 33 21
## 5933 32854 10 13 2001 17 DM M 36 43
## 5934 32855 10 13 2001 17 DM <NA> 35 34
## 5935 32859 10 13 2001 17 DM F 36 45
## 5936 32862 10 13 2001 17 DM F 35 51
## 5937 33067 11 17 2001 17 DM <NA> NA NA
## 5938 33069 11 17 2001 17 DM F 37 48
## 5939 33070 11 17 2001 17 DM M 36 44
## 5940 33071 11 17 2001 17 DM F 36 44
## 5941 33072 11 17 2001 17 DM M 37 50
## 5942 33264 12 15 2001 17 DM F 34 46
## 5943 33265 12 15 2001 17 DM M 36 51
## 5944 33268 12 15 2001 17 DM F 36 46
## 5945 33269 12 15 2001 17 DM M 36 43
## 5946 33365 1 12 2002 17 DM M 37 49
## 5947 33367 1 12 2002 17 DM F 36 47
## 5948 33369 1 12 2002 17 DM F 37 48
## 5949 33370 1 12 2002 17 DM M 36 42
## 5950 33445 2 9 2002 17 DM F 37 49
## 5951 33449 2 9 2002 17 DM M 37 50
## 5952 33450 2 9 2002 17 DM F 35 46
## 5953 33451 2 9 2002 17 DM M 36 46
## 5954 33608 3 13 2002 17 DM M 36 50
## 5955 33609 3 13 2002 17 DM M 35 50
## 5956 33611 3 13 2002 17 DM F 35 47
## 5957 33614 3 13 2002 17 DM M 36 47
## 5958 33616 3 13 2002 17 DM M 37 46
## 5959 33617 3 13 2002 17 DM F 37 45
## 5960 33618 3 13 2002 17 DM M 35 46
## 5961 33926 4 17 2002 17 DM M 37 50
## 5962 33929 4 17 2002 17 DM M 36 56
## 5963 33930 4 17 2002 17 DM F 36 48
## 5964 33931 4 17 2002 17 DM F 37 47
## 5965 34002 5 15 2002 17 DM M 35 41
## 5966 34003 5 15 2002 17 DM M 36 54
## 5967 34004 5 15 2002 17 DM F 36 46
## 5968 34008 5 15 2002 17 DM M 36 51
## 5969 34009 5 15 2002 17 DM F 36 47
## 5970 34011 5 15 2002 17 DM M 35 46
## 5971 34245 6 15 2002 17 DM M 37 50
## 5972 34247 6 15 2002 17 DM F 38 50
## 5973 34253 6 15 2002 17 DM F 36 50
## 5974 34255 6 15 2002 17 DM M 36 51
## 5975 34256 6 15 2002 17 DM F 36 26
## 5976 34477 7 13 2002 17 DM M 36 54
## 5977 34480 7 13 2002 17 DM F 36 49
## 5978 34482 7 13 2002 17 DM M 35 42
## 5979 34488 7 13 2002 17 DM F 36 52
## 5980 34685 9 8 2002 17 DM F 37 50
## 5981 34687 9 8 2002 17 DM M 35 47
## 5982 34789 10 5 2002 17 DM M NA 52
## 5983 34791 10 5 2002 17 DM M 34 20
## 5984 34792 10 5 2002 17 DM F 35 54
## 5985 34793 10 5 2002 17 DM F 35 50
## 5986 34996 11 9 2002 17 DM M 33 47
## 5987 34997 11 9 2002 17 DM M 36 44
## 5988 35004 11 9 2002 17 DM M 35 46
## 5989 35214 12 7 2002 17 DM M 34 46
## 5990 35217 12 7 2002 17 DM M 34 46
## 5991 35218 12 7 2002 17 DM M 34 40
## 5992 35219 12 7 2002 17 DM F 36 44
## 5993 35436 12 29 2002 17 DM F 34 32
## 5994 35437 12 29 2002 17 DM M 35 42
## 5995 35440 12 29 2002 17 DM F 27 44
## 5996 35441 12 29 2002 17 DM M 34 47
## 5997 35444 12 29 2002 17 DM F 36 47
## 5998 35445 12 29 2002 17 DM M 33 39
## 5999 6346 8 15 1982 17 PF F 16 6
## 6000 8425 10 15 1983 17 PF M 16 7
## 6001 18921 8 7 1991 17 PF F 16 8
## 6002 19119 10 10 1991 17 PF F 14 7
## 6003 20249 8 29 1992 17 PF F 14 8
## 6004 20345 9 26 1992 17 PF M 15 7
## 6005 20367 9 26 1992 17 PF M 11 10
## 6006 20452 10 18 1992 17 PF M 15 8
## 6007 20855 5 22 1993 17 PF M 16 7
## 6008 20968 7 14 1993 17 PF F 17 9
## 6009 20982 7 14 1993 17 PF M 16 9
## 6010 21052 8 19 1993 17 PF F NA 7
## 6011 21057 8 19 1993 17 PF M 21 8
## 6012 21094 9 16 1993 17 PF M 16 8
## 6013 21118 9 16 1993 17 PF M 15 7
## 6014 21153 10 15 1993 17 PF M 16 8
## 6015 21175 10 15 1993 17 PF M 17 8
## 6016 21513 4 10 1994 17 PF F NA 6
## 6017 21630 6 14 1994 17 PF F NA NA
## 6018 21721 8 17 1994 17 PF F 15 8
## 6019 21820 10 12 1994 17 PF F 16 7
## 6020 21882 11 1 1994 17 PF F 17 7
## 6021 22183 4 1 1995 17 PF F 15 7
## 6022 22188 4 1 1995 17 PF M 17 9
## 6023 22252 4 29 1995 17 PF M 16 9
## 6024 22390 6 27 1995 17 PF F 16 9
## 6025 22580 8 26 1995 17 PF F 15 9
## 6026 22676 9 23 1995 17 PF F 15 7
## 6027 22838 10 28 1995 17 PF M 15 10
## 6028 22874 10 28 1995 17 PF M 16 9
## 6029 22884 10 28 1995 17 PF F 16 11
## 6030 22889 10 28 1995 17 PF F 15 9
## 6031 22905 10 28 1995 17 PF M 15 10
## 6032 22908 10 28 1995 17 PF M 14 9
## 6033 22996 12 2 1995 17 PF M 16 12
## 6034 23026 12 2 1995 17 PF F 15 12
## 6035 23030 12 2 1995 17 PF M 16 11
## 6036 23049 12 2 1995 17 PF M 17 9
## 6037 23142 12 21 1995 17 PF F 15 8
## 6038 23148 12 21 1995 17 PF M 16 8
## 6039 23154 12 21 1995 17 PF M 17 9
## 6040 23159 12 21 1995 17 PF M 17 9
## 6041 23166 12 21 1995 17 PF F 16 9
## 6042 23251 1 27 1996 17 PF M 17 10
## 6043 23406 2 24 1996 17 PF M 17 9
## 6044 23581 3 23 1996 17 PF M 17 8
## 6045 23684 4 14 1996 17 PF M 16 9
## 6046 23691 4 14 1996 17 PF M 18 9
## 6047 24047 6 13 1996 17 PF M 15 9
## 6048 24222 7 20 1996 17 PF F 16 7
## 6049 24297 8 14 1996 17 PF M 16 10
## 6050 24409 9 21 1996 17 PF F 16 8
## 6051 24425 9 21 1996 17 PF M 16 7
## 6052 24429 9 21 1996 17 PF F 15 8
## 6053 24541 10 12 1996 17 PF F 16 8
## 6054 24585 10 12 1996 17 PF M 16 8
## 6055 24675 11 16 1996 17 PF F 15 7
## 6056 24713 11 16 1996 17 PF M 16 8
## 6057 25259 3 15 1997 17 PF M 16 10
## 6058 25511 4 12 1997 17 PF F 15 10
## 6059 25514 4 12 1997 17 PF M 16 10
## 6060 26075 6 10 1997 17 PF M 16 10
## 6061 26865 9 27 1997 17 PF M 16 8
## 6062 26984 10 25 1997 17 PF M 16 8
## 6063 28357 8 22 1998 17 PF M 16 7
## 6064 32425 8 25 2001 17 PF F 15 16
## 6065 1108 8 4 1978 17 PE M 20 19
## 6066 1110 8 4 1978 17 PE F 19 14
## 6067 1675 3 31 1979 17 PE M 20 23
## 6068 1921 7 25 1979 17 PE M 18 8
## 6069 3682 12 16 1980 17 PE F 20 19
## 6070 4042 4 5 1981 17 PE F NA 30
## 6071 4132 4 5 1981 17 PE M NA 26
## 6072 5747 4 28 1982 17 PE F 20 26
## 6073 7712 4 16 1983 17 PE F 19 18
## 6074 11440 5 10 1986 17 PE F 20 29
## 6075 12637 4 25 1987 17 PE F 21 15
## 6076 12645 4 25 1987 17 PE M 21 17
## 6077 12890 6 30 1987 17 PE F 21 23
## 6078 13560 10 24 1987 17 PE F 19 21
## 6079 13647 11 21 1987 17 PE M 20 17
## 6080 13914 1 23 1988 17 PE M 22 22
## 6081 14082 2 21 1988 17 PE F 21 23
## 6082 14254 3 20 1988 17 PE F 20 30
## 6083 14673 7 14 1988 17 PE M 21 16
## 6084 14781 8 9 1988 17 PE M 20 19
## 6085 15075 11 5 1988 17 PE F 20 31
## 6086 15182 12 13 1988 17 PE M 21 20
## 6087 15201 12 13 1988 17 PE F 20 22
## 6088 15335 1 10 1989 17 PE F 20 21
## 6089 15347 1 10 1989 17 PE M 20 19
## 6090 15379 1 10 1989 17 PE M 21 23
## 6091 15522 2 4 1989 17 PE M 21 21
## 6092 15545 2 4 1989 17 PE M 21 18
## 6093 15560 2 4 1989 17 PE M 20 19
## 6094 15741 3 13 1989 17 PE F 21 24
## 6095 16030 5 10 1989 17 PE F 22 20
## 6096 16634 11 4 1989 17 PE <NA> NA NA
## 6097 16757 12 4 1989 17 PE F 21 21
## 6098 16801 12 4 1989 17 PE M 22 21
## 6099 16926 1 6 1990 17 PE M 21 24
## 6100 17263 3 29 1990 17 PE F 20 21
## 6101 19134 10 10 1991 17 PE F 20 17
## 6102 20858 5 22 1993 17 PE M NA 23
## 6103 27870 5 28 1998 17 PE M 19 13
## 6104 134 8 21 1977 17 DS F 45 NA
## 6105 191 9 12 1977 17 DS M 47 NA
## 6106 200 9 12 1977 17 DS F 52 NA
## 6107 301 10 17 1977 17 DS F 48 NA
## 6108 309 10 17 1977 17 DS M 49 NA
## 6109 381 11 13 1977 17 DS F 48 118
## 6110 385 11 13 1977 17 DS M 50 132
## 6111 477 12 11 1977 17 DS F 47 115
## 6112 540 1 9 1978 17 DS F 47 117
## 6113 560 1 9 1978 17 DS M 50 133
## 6114 622 2 19 1978 17 DS F 46 137
## 6115 685 3 12 1978 17 DS F NA NA
## 6116 703 3 12 1978 17 DS M NA NA
## 6117 797 4 9 1978 17 DS M 50 142
## 6118 805 4 9 1978 17 DS F 47 142
## 6119 890 5 18 1978 17 DS M 49 131
## 6120 892 5 18 1978 17 DS F 50 115
## 6121 956 6 8 1978 17 DS F 49 123
## 6122 963 6 8 1978 17 DS M 50 133
## 6123 1055 7 7 1978 17 DS M 51 132
## 6124 1059 7 7 1978 17 DS F 48 120
## 6125 1118 8 4 1978 17 DS F 48 123
## 6126 1130 8 4 1978 17 DS M 51 138
## 6127 1212 9 3 1978 17 DS F 51 122
## 6128 1224 9 3 1978 17 DS M 51 136
## 6129 1330 10 7 1978 17 DS M 52 134
## 6130 1333 10 7 1978 17 DS F 50 121
## 6131 1398 11 4 1978 17 DS F 50 120
## 6132 1414 11 4 1978 17 DS M NA 137
## 6133 1488 12 2 1978 17 DS F 47 119
## 6134 1633 2 24 1979 17 DS F 50 125
## 6135 1683 3 31 1979 17 DS M 51 71
## 6136 1703 3 31 1979 17 DS F 48 129
## 6137 1739 4 28 1979 17 DS M 50 143
## 6138 1745 4 28 1979 17 DS F 48 119
## 6139 1787 5 29 1979 17 DS F 49 73
## 6140 1791 5 29 1979 17 DS M 49 75
## 6141 1795 5 29 1979 17 DS F 47 119
## 6142 1799 5 29 1979 17 DS M 49 147
## 6143 1801 5 29 1979 17 DS <NA> NA NA
## 6144 1862 7 3 1979 17 DS M 52 143
## 6145 1927 7 25 1979 17 DS M 51 99
## 6146 1935 7 25 1979 17 DS M 51 145
## 6147 1987 8 22 1979 17 DS M 51 106
## 6148 1990 8 22 1979 17 DS M 52 144
## 6149 2023 9 22 1979 17 DS M 52 118
## 6150 2094 10 24 1979 17 DS M 51 156
## 6151 2095 10 24 1979 17 DS M 51 123
## 6152 2161 11 17 1979 17 DS M 51 130
## 6153 2227 11 18 1979 17 DS F 53 134
## 6154 2424 2 24 1980 17 DS M 52 128
## 6155 2546 3 9 1980 17 DS M NA 126
## 6156 2644 3 9 1980 17 DS M NA 132
## 6157 2762 3 21 1980 17 DS M NA 160
## 6158 2924 5 17 1980 17 DS <NA> NA 108
## 6159 2940 5 17 1980 17 DS M 50 142
## 6160 3055 6 22 1980 17 DS F NA 109
## 6161 3068 6 22 1980 17 DS M 50 144
## 6162 3134 7 21 1980 17 DS F 50 104
## 6163 3137 7 21 1980 17 DS M 51 143
## 6164 3201 8 13 1980 17 DS F NA 118
## 6165 3207 8 13 1980 17 DS M 50 149
## 6166 3264 9 7 1980 17 DS M 53 124
## 6167 3270 9 7 1980 17 DS M 51 145
## 6168 3284 9 7 1980 17 DS F NA 118
## 6169 3340 10 11 1980 17 DS F 49 128
## 6170 3346 10 11 1980 17 DS M 51 149
## 6171 3410 11 8 1980 17 DS M 50 149
## 6172 3424 11 8 1980 17 DS F 49 121
## 6173 3492 11 9 1980 17 DS M 50 146
## 6174 3619 12 16 1980 17 DS F 47 118
## 6175 3620 12 16 1980 17 DS M 49 119
## 6176 3662 12 16 1980 17 DS F 51 127
## 6177 3671 12 16 1980 17 DS F 45 129
## 6178 3712 1 11 1981 17 DS F 47 116
## 6179 3720 1 11 1981 17 DS M 50 148
## 6180 3821 1 31 1981 17 DS F 50 143
## 6181 3836 1 31 1981 17 DS M 49 147
## 6182 3837 1 31 1981 17 DS F 50 137
## 6183 3911 3 8 1981 17 DS M 51 142
## 6184 3914 3 8 1981 17 DS F 53 138
## 6185 3934 3 8 1981 17 DS F 51 141
## 6186 4034 4 5 1981 17 DS F NA 147
## 6187 4084 4 5 1981 17 DS M NA 129
## 6188 4090 4 5 1981 17 DS M NA 120
## 6189 4107 4 5 1981 17 DS F NA 128
## 6190 4150 4 5 1981 17 DS F NA 122
## 6191 4155 4 5 1981 17 DS M NA 136
## 6192 4374 5 3 1981 17 DS M 51 94
## 6193 4397 5 3 1981 17 DS M 48 142
## 6194 4399 5 3 1981 17 DS F 50 120
## 6195 4574 6 5 1981 17 DS F 49 67
## 6196 4578 6 5 1981 17 DS M 53 144
## 6197 4581 6 5 1981 17 DS F 47 NA
## 6198 4622 7 7 1981 17 DS M 51 141
## 6199 4627 7 7 1981 17 DS F 48 89
## 6200 4742 7 31 1981 17 DS M 49 148
## 6201 4762 8 30 1981 17 DS F 49 117
## 6202 4775 8 30 1981 17 DS <NA> NA NA
## 6203 4998 11 22 1981 17 DS M 52 170
## 6204 5079 12 30 1981 17 DS M 51 147
## 6205 5304 1 25 1982 17 DS M 50 134
## 6206 5327 2 22 1982 17 DS M 49 150
## 6207 5659 3 30 1982 17 DS M 51 140
## 6208 6682 10 23 1982 17 DS F 49 148
## 6209 6709 10 23 1982 17 DS M 47 108
## 6210 6980 11 21 1982 17 DS M 49 116
## 6211 7190 1 12 1983 17 DS M 50 130
## 6212 7353 2 26 1983 17 DS M 49 122
## 6213 7476 3 14 1983 17 DS M 50 124
## 6214 7666 4 16 1983 17 DS M 50 130
## 6215 7822 5 14 1983 17 DS M 51 125
## 6216 7956 6 17 1983 17 DS M 49 126
## 6217 8088 7 16 1983 17 DS M 51 123
## 6218 8175 8 15 1983 17 DS M 51 125
## 6219 8294 9 10 1983 17 DS M 48 128
## 6220 8447 10 15 1983 17 DS M 51 125
## 6221 8614 11 12 1983 17 DS M 49 123
## 6222 8726 12 8 1983 17 DS M 49 130
## 6223 8933 3 12 1984 17 DS M 49 126
## 6224 8994 4 9 1984 17 DS F 48 121
## 6225 18831 7 12 1991 17 PP M 23 17
## 6226 18841 7 12 1991 17 PP M 21 16
## 6227 18919 8 7 1991 17 PP F 23 18
## 6228 18947 8 7 1991 17 PP M 21 16
## 6229 20098 7 3 1992 17 PP M 20 13
## 6230 20106 7 3 1992 17 PP M 21 14
## 6231 20172 7 30 1992 17 PP F 21 19
## 6232 20202 7 30 1992 17 PP M 22 17
## 6233 20255 8 29 1992 17 PP M 19 17
## 6234 20357 9 26 1992 17 PP F 20 14
## 6235 20362 9 26 1992 17 PP <NA> NA NA
## 6236 20363 9 26 1992 17 PP F 20 17
## 6237 20713 3 17 1993 17 PP M 22 22
## 6238 20799 4 23 1993 17 PP M 22 19
## 6239 20802 4 23 1993 17 PP F 21 19
## 6240 20846 5 22 1993 17 PP F 21 21
## 6241 20916 6 18 1993 17 PP F 19 15
## 6242 22541 8 26 1995 17 PP F 22 17
## 6243 22583 8 26 1995 17 PP M 23 12
## 6244 22734 9 24 1995 17 PP F 22 23
## 6245 22871 10 28 1995 17 PP F 24 17
## 6246 23600 3 23 1996 17 PP F 24 17
## 6247 24215 7 20 1996 17 PP M 21 20
## 6248 24299 8 14 1996 17 PP M 22 20
## 6249 24455 9 21 1996 17 PP F 21 16
## 6250 24459 9 21 1996 17 PP M 22 20
## 6251 24598 10 12 1996 17 PP M 23 16
## 6252 25465 4 12 1997 17 PP F 22 21
## 6253 25487 4 12 1997 17 PP M 22 19
## 6254 25737 5 10 1997 17 PP F 22 20
## 6255 26041 6 10 1997 17 PP F 20 22
## 6256 26073 6 10 1997 17 PP F 22 14
## 6257 26109 6 10 1997 17 PP M 21 10
## 6258 26117 6 10 1997 17 PP F 22 22
## 6259 26255 7 9 1997 17 PP M 22 18
## 6260 26374 7 9 1997 17 PP F 21 22
## 6261 26387 7 9 1997 17 PP M 21 20
## 6262 26521 7 9 1997 17 PP F 22 18
## 6263 26551 7 29 1997 17 PP M 21 18
## 6264 27736 3 29 1998 17 PP M 21 22
## 6265 27795 5 2 1998 17 PP F 22 19
## 6266 27913 5 28 1998 17 PP F 22 17
## 6267 27927 5 28 1998 17 PP M 22 19
## 6268 27930 5 28 1998 17 PP M 22 20
## 6269 28017 6 27 1998 17 PP F 22 14
## 6270 28052 6 27 1998 17 PP M 21 18
## 6271 28073 6 27 1998 17 PP F 21 23
## 6272 28091 6 27 1998 17 PP M 23 14
## 6273 28239 7 18 1998 17 PP F 21 21
## 6274 28350 8 22 1998 17 PP M 22 15
## 6275 28353 8 22 1998 17 PP F 21 17
## 6276 28355 8 22 1998 17 PP F 21 17
## 6277 28642 9 21 1998 17 PP <NA> 21 16
## 6278 28646 9 21 1998 17 PP F 22 16
## 6279 28684 10 24 1998 17 PP M 21 15
## 6280 29600 5 15 1999 17 PP F 22 19
## 6281 29735 6 12 1999 17 PP M 22 16
## 6282 29740 6 12 1999 17 PP F 21 20
## 6283 29884 10 9 1999 17 PP F 22 21
## 6284 29972 11 6 1999 17 PP M 22 15
## 6285 29973 11 6 1999 17 PP F 21 20
## 6286 30089 12 5 1999 17 PP M 21 16
## 6287 30198 1 8 2000 17 PP M 22 16
## 6288 30330 2 5 2000 17 PP F 22 16
## 6289 30474 3 4 2000 17 PP M 22 19
## 6290 30600 4 30 2000 17 PP F NA 23
## 6291 30770 6 3 2000 17 PP M 22 22
## 6292 30771 6 3 2000 17 PP M 23 15
## 6293 30773 6 3 2000 17 PP F 20 11
## 6294 30774 6 3 2000 17 PP M 22 18
## 6295 30775 6 3 2000 17 PP F 22 19
## 6296 30971 7 1 2000 17 PP F 21 15
## 6297 30972 7 1 2000 17 PP M 21 14
## 6298 30973 7 1 2000 17 PP F 22 22
## 6299 30975 7 1 2000 17 PP M 21 21
## 6300 30977 7 1 2000 17 PP M 22 18
## 6301 30980 7 1 2000 17 PP F 20 11
## 6302 31135 7 22 2000 17 PP F 22 14
## 6303 31139 7 22 2000 17 PP M 21 18
## 6304 31140 7 22 2000 17 PP F 21 15
## 6305 31262 8 25 2000 17 PP F 22 14
## 6306 31265 8 25 2000 17 PP M 22 19
## 6307 31876 3 24 2001 17 PP M 16 13
## 6308 31963 4 21 2001 17 PP M 22 18
## 6309 31964 4 21 2001 17 PP F 22 20
## 6310 32069 5 26 2001 17 PP F 22 19
## 6311 32188 6 25 2001 17 PP F 23 18
## 6312 32190 6 25 2001 17 PP F 21 10
## 6313 32420 8 25 2001 17 PP M 21 16
## 6314 32423 8 25 2001 17 PP F 22 20
## 6315 32426 8 25 2001 17 PP M 22 15
## 6316 32642 9 22 2001 17 PP M 23 18
## 6317 32649 9 22 2001 17 PP M 22 17
## 6318 32650 9 22 2001 17 PP F 22 18
## 6319 33444 2 9 2002 17 PP F 22 17
## 6320 33615 3 13 2002 17 PP M 22 17
## 6321 33925 4 17 2002 17 PP F 22 19
## 6322 33927 4 17 2002 17 PP M 22 15
## 6323 33932 4 17 2002 17 PP M 22 20
## 6324 34006 5 15 2002 17 PP M 22 19
## 6325 34007 5 15 2002 17 PP F 21 18
## 6326 34249 6 15 2002 17 PP F 21 13
## 6327 34251 6 15 2002 17 PP F 21 17
## 6328 34478 7 13 2002 17 PP F 21 11
## 6329 34483 7 13 2002 17 PP F 22 16
## 6330 34484 7 13 2002 17 PP M 21 16
## 6331 34487 7 13 2002 17 PP F 20 16
## 6332 34684 9 8 2002 17 PP M 21 NA
## 6333 34788 10 5 2002 17 PP F 22 15
## 6334 34794 10 5 2002 17 PP M 21 16
## 6335 34795 10 5 2002 17 PP F 21 15
## 6336 1435 11 4 1978 17 SH M 29 89
## 6337 13491 10 24 1987 17 SH F 31 104
## 6338 14476 5 14 1988 17 SH M 26 96
## 6339 14691 7 14 1988 17 SH M 27 62
## 6340 14880 9 11 1988 17 SH M 28 79
## 6341 15077 11 5 1988 17 SH F 29 60
## 6342 15085 11 5 1988 17 SH F 27 70
## 6343 15367 1 10 1989 17 SH F 30 66
## 6344 15368 1 10 1989 17 SH F 29 64
## 6345 15566 2 4 1989 17 SH F 29 61
## 6346 15773 3 13 1989 17 SH F 31 75
## 6347 15924 4 2 1989 17 SH F 31 102
## 6348 16036 5 10 1989 17 SH M 27 26
## 6349 16139 6 3 1989 17 SH F 27 32
## 6350 16269 7 3 1989 17 SH F NA 51
## 6351 296 10 17 1977 17 OT <NA> 18 21
## 6352 299 10 17 1977 17 OT M 19 NA
## 6353 706 3 12 1978 17 OT F NA NA
## 6354 784 4 9 1978 17 OT M NA 23
## 6355 1237 9 3 1978 17 OT M NA NA
## 6356 1943 7 25 1979 17 OT F 20 25
## 6357 1981 8 22 1979 17 OT M 18 27
## 6358 2142 11 17 1979 17 OT M 18 20
## 6359 2144 11 17 1979 17 OT M 21 22
## 6360 2172 11 17 1979 17 OT F 20 28
## 6361 2306 1 15 1980 17 OT M 20 20
## 6362 2307 1 15 1980 17 OT F 21 25
## 6363 2831 4 17 1980 17 OT M NA 15
## 6364 2945 5 17 1980 17 OT F 22 28
## 6365 3132 7 21 1980 17 OT F 20 32
## 6366 3333 10 11 1980 17 OT F 20 35
## 6367 3719 1 11 1981 17 OT M 19 24
## 6368 3729 1 11 1981 17 OT F 19 28
## 6369 3913 3 8 1981 17 OT F 21 11
## 6370 3916 3 8 1981 17 OT M 21 10
## 6371 3938 3 8 1981 17 OT M 21 11
## 6372 3941 3 8 1981 17 OT M 21 11
## 6373 3943 3 8 1981 17 OT F 22 31
## 6374 4180 4 5 1981 17 OT F NA 37
## 6375 4183 4 5 1981 17 OT M NA 32
## 6376 4407 5 3 1981 17 OT F 21 38
## 6377 4409 5 3 1981 17 OT M NA 29
## 6378 4729 7 31 1981 17 OT F 21 36
## 6379 4849 9 30 1981 17 OT M 23 30
## 6380 4854 9 30 1981 17 OT F 22 22
## 6381 5627 3 30 1982 17 OT F 21 31
## 6382 5654 3 30 1982 17 OT M 19 28
## 6383 5735 4 28 1982 17 OT M 20 27
## 6384 5904 5 21 1982 17 OT M 19 28
## 6385 6065 6 29 1982 17 OT F NA 16
## 6386 6067 6 29 1982 17 OT F NA 30
## 6387 6349 8 15 1982 17 OT F 20 33
## 6388 6605 9 19 1982 17 OT F 19 25
## 6389 6649 10 23 1982 17 OT F 20 23
## 6390 6758 10 23 1982 17 OT F 20 18
## 6391 6978 11 21 1982 17 OT M 19 26
## 6392 6987 11 21 1982 17 OT F 19 24
## 6393 7538 3 14 1983 17 OT F 21 26
## 6394 7842 5 14 1983 17 OT F 19 16
## 6395 8205 8 15 1983 17 OT F 21 21
## 6396 8450 10 15 1983 17 OT F 21 29
## 6397 8459 10 15 1983 17 OT F 19 23
## 6398 9313 7 3 1984 17 OT M 21 19
## 6399 9482 8 25 1984 17 OT M 19 21
## 6400 9651 10 20 1984 17 OT F 18 24
## 6401 9791 1 19 1985 17 OT F 20 16
## 6402 9810 1 19 1985 17 OT M 19 18
## 6403 10559 7 23 1985 17 OT M 19 20
## 6404 13390 9 26 1987 17 OT F 20 20
## 6405 13725 11 21 1987 17 OT M 21 23
## 6406 13909 1 23 1988 17 OT M 20 27
## 6407 14089 2 21 1988 17 OT M 20 27
## 6408 14091 2 21 1988 17 OT F 20 26
## 6409 14375 4 18 1988 17 OT F 20 28
## 6410 14387 4 18 1988 17 OT M 22 30
## 6411 14467 5 14 1988 17 OT F 19 29
## 6412 14680 7 14 1988 17 OT M 19 22
## 6413 14782 8 9 1988 17 OT M 20 22
## 6414 14967 10 8 1988 17 OT M 23 27
## 6415 15044 11 5 1988 17 OT M 21 22
## 6416 15079 11 5 1988 17 OT M 21 30
## 6417 15168 12 13 1988 17 OT M 21 23
## 6418 15191 12 13 1988 17 OT M 21 27
## 6419 15956 4 2 1989 17 OT M 22 27
## 6420 16034 5 10 1989 17 OT F 22 34
## 6421 16258 7 3 1989 17 OT M NA 22
## 6422 16325 7 29 1989 17 OT M 21 22
## 6423 16424 9 3 1989 17 OT M 21 24
## 6424 16550 10 8 1989 17 OT M 20 22
## 6425 17667 7 21 1990 17 OT F 23 18
## 6426 17678 7 21 1990 17 OT M 20 24
## 6427 19059 9 10 1991 17 OT F 20 27
## 6428 19140 10 10 1991 17 OT F 17 22
## 6429 19437 12 7 1991 17 OT F 19 24
## 6430 19440 12 7 1991 17 OT M 20 27
## 6431 20111 7 3 1992 17 OT F 50 23
## 6432 20729 3 17 1993 17 OT M 20 26
## 6433 21216 11 13 1993 17 OT M 20 24
## 6434 21447 3 11 1994 17 OT F 21 24
## 6435 21450 3 11 1994 17 OT M 22 26
## 6436 22723 9 23 1995 17 OT F 20 31
## 6437 22897 10 28 1995 17 OT F 20 26
## 6438 23037 12 2 1995 17 OT F 21 28
## 6439 23137 12 21 1995 17 OT F 22 27
## 6440 23579 3 23 1996 17 OT F 21 31
## 6441 24208 7 20 1996 17 OT M 22 28
## 6442 24419 9 21 1996 17 OT M 19 13
## 6443 24421 9 21 1996 17 OT F 22 22
## 6444 24570 10 12 1996 17 OT M 21 17
## 6445 24686 11 16 1996 17 OT F 22 25
## 6446 24715 11 16 1996 17 OT M 21 20
## 6447 24808 12 18 1996 17 OT F 21 22
## 6448 25169 3 15 1997 17 OT M 20 27
## 6449 25255 3 15 1997 17 OT F 22 28
## 6450 25435 4 12 1997 17 OT F 20 31
## 6451 25483 4 12 1997 17 OT F 20 30
## 6452 25549 4 12 1997 17 OT M 21 30
## 6453 25686 5 10 1997 17 OT F 20 30
## 6454 25705 5 10 1997 17 OT F 20 20
## 6455 25755 5 10 1997 17 OT M 20 27
## 6456 26084 6 10 1997 17 OT M 20 21
## 6457 26086 6 10 1997 17 OT F 21 17
## 6458 26235 7 9 1997 17 OT M 18 14
## 6459 26543 7 29 1997 17 OT M 22 20
## 6460 26822 9 27 1997 17 OT F 21 21
## 6461 26824 9 27 1997 17 OT F 21 29
## 6462 26871 9 27 1997 17 OT M 22 22
## 6463 27007 10 25 1997 17 OT F 20 24
## 6464 27012 10 25 1997 17 OT M 21 23
## 6465 27215 11 22 1997 17 OT F 20 22
## 6466 27265 11 22 1997 17 OT M 19 24
## 6467 27324 12 28 1997 17 OT M 21 27
## 6468 27332 12 28 1997 17 OT F 21 22
## 6469 27340 12 28 1997 17 OT M 19 22
## 6470 27450 1 31 1998 17 OT F 20 22
## 6471 27463 1 31 1998 17 OT M 21 24
## 6472 27465 1 31 1998 17 OT M 20 23
## 6473 27469 1 31 1998 17 OT F 20 24
## 6474 27576 3 1 1998 17 OT M 21 NA
## 6475 27579 3 1 1998 17 OT F 20 NA
## 6476 27692 3 29 1998 17 OT M 20 28
## 6477 28044 6 27 1998 17 OT M 20 29
## 6478 28208 7 18 1998 17 OT F 19 27
## 6479 28639 9 21 1998 17 OT M 20 22
## 6480 28682 10 24 1998 17 OT F 19 25
## 6481 29207 2 20 1999 17 OT M 20 27
## 6482 29210 2 20 1999 17 OT F 20 26
## 6483 29338 3 14 1999 17 OT M 21 27
## 6484 29343 3 14 1999 17 OT F 20 25
## 6485 29467 4 17 1999 17 OT F 20 27
## 6486 29738 6 12 1999 17 OT M 20 28
## 6487 29970 11 6 1999 17 OT M 20 28
## 6488 30478 3 4 2000 17 OT M 20 24
## 6489 30599 4 30 2000 17 OT F 19 29
## 6490 30601 4 30 2000 17 OT M 21 30
## 6491 30976 7 1 2000 17 OT F 20 27
## 6492 31264 8 25 2000 17 OT F 21 24
## 6493 31266 8 25 2000 17 OT F 20 31
## 6494 31417 9 30 2000 17 OT F 20 27
## 6495 31537 11 25 2000 17 OT M 20 22
## 6496 31649 12 22 2000 17 OT M 21 22
## 6497 31651 12 22 2000 17 OT F 20 27
## 6498 31653 12 22 2000 17 OT M 20 21
## 6499 31730 1 21 2001 17 OT M 21 23
## 6500 31735 1 21 2001 17 OT F 20 26
## 6501 31737 1 21 2001 17 OT M 20 20
## 6502 31804 3 3 2001 17 OT M 21 27
## 6503 31807 3 3 2001 17 OT F 20 25
## 6504 31872 3 24 2001 17 OT F 22 26
## 6505 31969 4 21 2001 17 OT M 21 28
## 6506 32640 9 22 2001 17 OT M 22 NA
## 6507 32857 10 13 2001 17 OT F 20 21
## 6508 32860 10 13 2001 17 OT M 20 25
## 6509 33074 11 17 2001 17 OT M 21 22
## 6510 33266 12 15 2001 17 OT M 20 22
## 6511 33267 12 15 2001 17 OT F 20 19
## 6512 33364 1 12 2002 17 OT F 21 18
## 6513 33447 2 9 2002 17 OT M 21 25
## 6514 33612 3 13 2002 17 OT M 21 32
## 6515 33619 3 13 2002 17 OT F 21 26
## 6516 34475 7 13 2002 17 OT M 21 27
## 6517 34992 11 9 2002 17 OT F 19 30
## 6518 35000 11 9 2002 17 OT M 20 27
## 6519 35213 12 7 2002 17 OT M 21 25
## 6520 317 10 17 1977 17 DO F 32 48
## 6521 323 10 17 1977 17 DO F 33 31
## 6522 795 4 9 1978 17 DO F 33 55
## 6523 908 5 18 1978 17 DO M 33 18
## 6524 977 6 8 1978 17 DO M 34 23
## 6525 1070 7 7 1978 17 DO M 35 33
## 6526 1129 8 4 1978 17 DO M 35 38
## 6527 1424 11 4 1978 17 DO F 31 45
## 6528 1506 12 2 1978 17 DO F 33 44
## 6529 1632 2 24 1979 17 DO F 34 48
## 6530 1700 3 31 1979 17 DO F 35 49
## 6531 1706 3 31 1979 17 DO F 34 50
## 6532 1750 4 28 1979 17 DO F 34 51
## 6533 1811 5 29 1979 17 DO M 33 29
## 6534 1869 7 3 1979 17 DO M 33 38
## 6535 1941 7 25 1979 17 DO M 35 NA
## 6536 1989 8 22 1979 17 DO M 34 45
## 6537 2105 10 24 1979 17 DO M 34 49
## 6538 2186 11 17 1979 17 DO M 34 51
## 6539 2325 1 15 1980 17 DO M 33 50
## 6540 2363 1 16 1980 17 DO M 34 32
## 6541 2410 2 24 1980 17 DO F 35 54
## 6542 2437 2 24 1980 17 DO M 34 NA
## 6543 2446 2 24 1980 17 DO F 35 52
## 6544 2674 3 9 1980 17 DO M NA NA
## 6545 2771 3 21 1980 17 DO M NA 51
## 6546 2851 4 17 1980 17 DO M NA 49
## 6547 2923 5 17 1980 17 DO M 34 51
## 6548 2950 5 17 1980 17 DO F 34 53
## 6549 3066 6 22 1980 17 DO F 35 58
## 6550 3073 6 22 1980 17 DO M 34 49
## 6551 3131 7 21 1980 17 DO M 34 24
## 6552 3143 7 21 1980 17 DO M 36 49
## 6553 3149 7 21 1980 17 DO F 35 47
## 6554 3193 8 13 1980 17 DO M 34 32
## 6555 3205 8 13 1980 17 DO M 35 51
## 6556 3280 9 7 1980 17 DO M 35 52
## 6557 3361 10 11 1980 17 DO F 34 49
## 6558 3427 11 8 1980 17 DO F 36 47
## 6559 3673 12 16 1980 17 DO F 35 59
## 6560 3723 1 11 1981 17 DO F 36 46
## 6561 3852 1 31 1981 17 DO F 34 33
## 6562 3936 3 8 1981 17 DO F 37 44
## 6563 4163 4 5 1981 17 DO F NA 51
## 6564 4402 5 3 1981 17 DO F 34 47
## 6565 4589 6 5 1981 17 DO F 35 38
## 6566 4597 6 5 1981 17 DO F 37 50
## 6567 4637 7 7 1981 17 DO F 36 49
## 6568 4747 7 31 1981 17 DO M 35 29
## 6569 4778 8 30 1981 17 DO F 37 53
## 6570 4783 8 30 1981 17 DO M 35 53
## 6571 4938 10 25 1981 17 DO F 37 54
## 6572 5680 3 30 1982 17 DO F 37 59
## 6573 5722 4 28 1982 17 DO F 37 59
## 6574 5728 4 28 1982 17 DO F 34 36
## 6575 5865 5 21 1982 17 DO F 37 40
## 6576 6141 6 29 1982 17 DO F NA 52
## 6577 6274 7 26 1982 17 DO F NA 24
## 6578 6389 8 15 1982 17 DO F 34 30
## 6579 6413 8 15 1982 17 DO F 34 48
## 6580 6638 9 19 1982 17 DO F 36 48
## 6581 6765 10 23 1982 17 DO F 35 52
## 6582 7025 11 21 1982 17 DO F 36 54
## 6583 7202 1 12 1983 17 DO F 37 48
## 6584 7358 2 26 1983 17 DO F 35 53
## 6585 7535 3 14 1983 17 DO F 34 53
## 6586 7637 4 16 1983 17 DO M 37 56
## 6587 7856 5 14 1983 17 DO M 37 36
## 6588 8464 10 15 1983 17 DO M 37 53
## 6589 9654 10 20 1984 17 DO F 35 52
## 6590 9737 12 30 1984 17 DO M 34 64
## 6591 9822 1 19 1985 17 DO F 35 51
## 6592 10076 3 16 1985 17 DO M 31 20
## 6593 10225 4 20 1985 17 DO F 35 38
## 6594 10239 4 20 1985 17 DO M 35 46
## 6595 10396 5 23 1985 17 DO M 34 45
## 6596 10401 5 23 1985 17 DO M 35 50
## 6597 10476 6 15 1985 17 DO M 35 51
## 6598 10485 6 15 1985 17 DO F 36 NA
## 6599 10556 7 23 1985 17 DO M 35 51
## 6600 10569 7 23 1985 17 DO M 34 50
## 6601 10658 8 19 1985 17 DO M 34 50
## 6602 10672 8 19 1985 17 DO M 35 51
## 6603 10762 9 21 1985 17 DO M 36 59
## 6604 10767 9 21 1985 17 DO M 35 54
## 6605 10864 10 12 1985 17 DO M 35 55
## 6606 10873 10 12 1985 17 DO M 35 50
## 6607 10988 11 16 1985 17 DO M NA NA
## 6608 10992 11 16 1985 17 DO M 37 50
## 6609 11122 12 7 1985 17 DO M 34 51
## 6610 11131 12 7 1985 17 DO M 35 51
## 6611 11254 3 8 1986 17 DO M 35 53
## 6612 11354 4 12 1986 17 DO F 36 57
## 6613 11469 5 10 1986 17 DO M 32 52
## 6614 11557 6 4 1986 17 DO F 36 61
## 6615 11659 7 3 1986 17 DO F 36 54
## 6616 11674 7 3 1986 17 DO M 34 54
## 6617 11760 8 9 1986 17 DO F 36 60
## 6618 11823 9 6 1986 17 DO F 36 52
## 6619 11904 10 4 1986 17 DO F 36 63
## 6620 11917 10 4 1986 17 DO M 34 NA
## 6621 11994 11 15 1986 17 DO M 29 18
## 6622 12002 11 15 1986 17 DO F 35 69
## 6623 12087 12 14 1986 17 DO M 31 30
## 6624 12099 12 14 1986 17 DO F 34 51
## 6625 12114 12 14 1986 17 DO F 35 30
## 6626 12224 1 31 1987 17 DO F 33 58
## 6627 12379 3 1 1987 17 DO F 37 56
## 6628 12503 4 4 1987 17 DO M 36 38
## 6629 12522 4 4 1987 17 DO M 33 37
## 6630 12532 4 4 1987 17 DO F 36 62
## 6631 12654 4 25 1987 17 DO M 35 44
## 6632 12802 5 28 1987 17 DO M 36 42
## 6633 12857 5 28 1987 17 DO M 38 40
## 6634 12934 6 30 1987 17 DO M 37 51
## 6635 12939 6 30 1987 17 DO F 37 58
## 6636 12953 6 30 1987 17 DO M 38 45
## 6637 13063 7 25 1987 17 DO M NA NA
## 6638 13070 7 25 1987 17 DO F NA 20
## 6639 13082 7 25 1987 17 DO M NA 49
## 6640 13091 7 25 1987 17 DO M NA 24
## 6641 13232 8 25 1987 17 DO M 36 54
## 6642 13242 8 25 1987 17 DO M 37 54
## 6643 13251 8 25 1987 17 DO M 36 52
## 6644 13364 9 26 1987 17 DO M 36 51
## 6645 13378 9 26 1987 17 DO M 37 54
## 6646 13552 10 24 1987 17 DO M 37 55
## 6647 13559 10 24 1987 17 DO M 38 53
## 6648 13678 11 21 1987 17 DO M NA NA
## 6649 13696 11 21 1987 17 DO M 36 52
## 6650 13896 1 23 1988 17 DO M 37 49
## 6651 13905 1 23 1988 17 DO M 37 58
## 6652 14011 2 21 1988 17 DO M 37 57
## 6653 14092 2 21 1988 17 DO M 37 55
## 6654 14231 3 20 1988 17 DO M 36 59
## 6655 14245 3 20 1988 17 DO M 37 NA
## 6656 14393 4 18 1988 17 DO M 36 54
## 6657 14396 4 18 1988 17 DO M 36 58
## 6658 14397 4 18 1988 17 DO M 37 NA
## 6659 14468 5 14 1988 17 DO M 36 52
## 6660 14480 5 14 1988 17 DO M 34 59
## 6661 14546 6 11 1988 17 DO M 37 24
## 6662 14559 6 11 1988 17 DO M 36 NA
## 6663 14571 6 11 1988 17 DO M 37 59
## 6664 14664 7 14 1988 17 DO M 35 60
## 6665 14693 7 14 1988 17 DO M 37 59
## 6666 14743 8 9 1988 17 DO M 37 58
## 6667 14752 8 9 1988 17 DO M 37 51
## 6668 14758 8 9 1988 17 DO M 37 58
## 6669 14881 9 11 1988 17 DO M 37 58
## 6670 14950 10 8 1988 17 DO F 36 49
## 6671 14960 10 8 1988 17 DO M 37 59
## 6672 15074 11 5 1988 17 DO M 35 60
## 6673 15185 12 13 1988 17 DO M 36 57
## 6674 15354 1 10 1989 17 DO M 36 57
## 6675 15551 2 4 1989 17 DO M 37 54
## 6676 15770 3 13 1989 17 DO M 36 60
## 6677 15944 4 2 1989 17 DO F 36 49
## 6678 15948 4 2 1989 17 DO M 37 NA
## 6679 16029 5 10 1989 17 DO M 37 56
## 6680 16037 5 10 1989 17 DO F 37 47
## 6681 16102 6 3 1989 17 DO F 36 49
## 6682 16132 6 3 1989 17 DO M 35 58
## 6683 16220 7 3 1989 17 DO F NA 47
## 6684 16420 9 3 1989 17 DO F 36 66
## 6685 16429 9 3 1989 17 DO F 35 23
## 6686 16542 10 8 1989 17 DO F 36 50
## 6687 16553 10 8 1989 17 DO M 36 48
## 6688 16570 10 8 1989 17 DO M 36 56
## 6689 16617 11 4 1989 17 DO M 37 45
## 6690 16624 11 4 1989 17 DO M 36 55
## 6691 16651 11 4 1989 17 DO F 35 55
## 6692 16750 12 4 1989 17 DO M 36 40
## 6693 16763 12 4 1989 17 DO F 36 47
## 6694 16776 12 4 1989 17 DO F 36 50
## 6695 16888 1 6 1990 17 DO M 36 55
## 6696 16899 1 6 1990 17 DO M 36 47
## 6697 16928 1 6 1990 17 DO M 36 49
## 6698 17033 1 29 1990 17 DO M 38 52
## 6699 17150 2 24 1990 17 DO M 37 55
## 6700 17159 2 24 1990 17 DO M 36 54
## 6701 17269 3 29 1990 17 DO F 36 44
## 6702 17277 3 29 1990 17 DO M 36 55
## 6703 17284 3 29 1990 17 DO M 37 56
## 6704 17411 4 25 1990 17 DO F 36 48
## 6705 17419 4 25 1990 17 DO <NA> NA NA
## 6706 17422 4 25 1990 17 DO F 36 44
## 6707 17424 4 25 1990 17 DO M 36 54
## 6708 17542 5 24 1990 17 DO F 36 41
## 6709 17549 5 24 1990 17 DO M 36 54
## 6710 17589 6 21 1990 17 DO M 36 60
## 6711 17590 6 21 1990 17 DO M 36 49
## 6712 17606 6 21 1990 17 DO M 36 55
## 6713 17686 7 21 1990 17 DO M 36 59
## 6714 17750 8 16 1990 17 DO M 37 60
## 6715 17768 8 16 1990 17 DO M 37 47
## 6716 17843 9 22 1990 17 DO F NA 49
## 6717 17939 10 16 1990 17 DO F 35 45
## 6718 18003 11 10 1990 17 DO F 36 45
## 6719 18098 12 15 1990 17 DO F 36 44
## 6720 18245 1 11 1991 17 DO F 31 45
## 6721 18355 2 16 1991 17 DO F 36 47
## 6722 18477 3 13 1991 17 DO F 36 49
## 6723 18568 4 19 1991 17 DO F 37 47
## 6724 18578 4 19 1991 17 DO F 34 38
## 6725 18657 5 13 1991 17 DO M 36 40
## 6726 18683 5 13 1991 17 DO F 36 54
## 6727 18747 6 13 1991 17 DO <NA> NA NA
## 6728 18766 6 13 1991 17 DO M 29 45
## 6729 18842 7 12 1991 17 DO M 36 48
## 6730 18849 7 12 1991 17 DO F 37 53
## 6731 18853 7 12 1991 17 DO F 37 37
## 6732 18940 8 7 1991 17 DO M 37 51
## 6733 19061 9 10 1991 17 DO F 38 42
## 6734 19128 10 10 1991 17 DO F 36 50
## 6735 19129 10 10 1991 17 DO F 36 55
## 6736 19286 11 14 1991 17 DO F 37 50
## 6737 19294 11 14 1991 17 DO F 36 49
## 6738 19407 12 7 1991 17 DO F 36 51
## 6739 19421 12 7 1991 17 DO F 36 30
## 6740 19423 12 7 1991 17 DO F 32 29
## 6741 19425 12 7 1991 17 DO F 37 48
## 6742 19555 1 8 1992 17 DO F 31 49
## 6743 19583 1 8 1992 17 DO F 39 51
## 6744 19706 2 7 1992 17 DO F 35 42
## 6745 19724 2 7 1992 17 DO F 35 43
## 6746 20196 7 30 1992 17 DO M 38 NA
## 6747 20265 8 29 1992 17 DO M 34 55
## 6748 20347 9 26 1992 17 DO M 35 NA
## 6749 20454 10 18 1992 17 DO M 36 60
## 6750 25816 5 10 1997 17 DO F 33 50
## 6751 25834 5 10 1997 17 DO F 35 46
## 6752 26131 6 10 1997 17 DO F 35 42
## 6753 26482 7 9 1997 17 DO M 35 40
## 6754 26866 9 27 1997 17 DO M 34 53
## 6755 27039 10 25 1997 17 DO M 34 45
## 6756 27583 3 1 1998 17 DO M 35 NA
## 6757 28024 6 27 1998 17 DO F 36 30
## 6758 28078 6 27 1998 17 DO F 35 49
## 6759 28230 7 18 1998 17 DO M 35 28
## 6760 28358 8 22 1998 17 DO M 36 43
## 6761 28645 9 21 1998 17 DO M 36 51
## 6762 28829 11 21 1998 17 DO M 35 52
## 6763 29062 1 16 1999 17 DO M 35 57
## 6764 29206 2 20 1999 17 DO M 35 56
## 6765 29339 3 14 1999 17 DO M 35 52
## 6766 29599 5 15 1999 17 DO M 35 36
## 6767 29742 6 12 1999 17 DO M 34 36
## 6768 29888 10 9 1999 17 DO F 35 46
## 6769 29974 11 6 1999 17 DO M 37 49
## 6770 30087 12 5 1999 17 DO F 35 54
## 6771 30199 1 8 2000 17 DO F 35 54
## 6772 30329 2 5 2000 17 DO F 35 54
## 6773 30602 4 30 2000 17 DO M 34 39
## 6774 30603 4 30 2000 17 DO M 33 38
## 6775 30649 4 30 2000 17 DO F 36 59
## 6776 30769 6 3 2000 17 DO M 35 24
## 6777 30776 6 3 2000 17 DO F 36 55
## 6778 30970 7 1 2000 17 DO M 34 51
## 6779 31138 7 22 2000 17 DO M 34 47
## 6780 34248 6 15 2002 17 DO M 36 50
## 6781 20654 2 19 1993 17 OX <NA> NA NA
## 6782 3213 8 13 1980 17 SS <NA> NA NA
## 6783 3282 9 7 1980 17 SS <NA> NA NA
## 6784 4058 4 5 1981 17 SS <NA> NA NA
## 6785 8108 7 16 1983 17 SS <NA> NA NA
## 6786 9319 7 3 1984 17 SS <NA> NA NA
## 6787 11900 10 4 1986 17 SS <NA> NA NA
## 6788 13039 7 25 1987 17 SS <NA> NA NA
## 6789 13200 8 25 1987 17 SS <NA> NA NA
## 6790 16227 7 3 1989 17 SS <NA> NA NA
## 6791 16438 9 3 1989 17 SS <NA> NA NA
## 6792 29340 3 14 1999 17 SS <NA> NA NA
## 6793 29598 5 15 1999 17 SS <NA> NA NA
## 6794 29744 6 12 1999 17 SS <NA> NA NA
## 6795 29886 10 9 1999 17 SS <NA> NA NA
## 6796 33613 3 13 2002 17 SS <NA> NA NA
## 6797 34784 10 5 2002 17 SS <NA> NA NA
## 6798 321 10 17 1977 17 OL F NA 23
## 6799 626 2 19 1978 17 OL F 20 35
## 6800 701 3 12 1978 17 OL <NA> NA NA
## 6801 951 6 8 1978 17 OL F 21 29
## 6802 1068 7 7 1978 17 OL F 20 29
## 6803 1196 9 3 1978 17 OL F 21 33
## 6804 1313 10 7 1978 17 OL M 20 30
## 6805 1477 12 2 1978 17 OL F 21 28
## 6806 1510 12 2 1978 17 OL M 21 NA
## 6807 1516 12 2 1978 17 OL M 21 32
## 6808 2226 11 18 1979 17 OL F 19 29
## 6809 2314 1 15 1980 17 OL F NA 32
## 6810 2323 1 15 1980 17 OL M 22 31
## 6811 2441 2 24 1980 17 OL F 19 37
## 6812 2443 2 24 1980 17 OL M NA 35
## 6813 2688 3 9 1980 17 OL M NA 35
## 6814 2748 3 21 1980 17 OL M NA 35
## 6815 2752 3 21 1980 17 OL F NA 40
## 6816 2852 4 17 1980 17 OL F NA 33
## 6817 3430 11 8 1980 17 OL M 21 34
## 6818 3439 11 8 1980 17 OL F 20 27
## 6819 3654 12 16 1980 17 OL M 21 36
## 6820 3678 12 16 1980 17 OL F 21 33
## 6821 3704 1 11 1981 17 OL F 19 34
## 6822 3848 1 31 1981 17 OL F 21 40
## 6823 4021 4 5 1981 17 OL F NA 34
## 6824 6119 6 29 1982 17 OL M NA 39
## 6825 6965 11 21 1982 17 OL M 21 39
## 6826 6990 11 21 1982 17 OL F 18 25
## 6827 7509 3 14 1983 17 OL M 20 36
## 6828 10570 7 23 1985 17 OL F 20 18
## 6829 11250 3 8 1986 17 OL M 21 34
## 6830 12111 12 14 1986 17 OL M 20 42
## 6831 13410 9 26 1987 17 OL M 21 27
## 6832 13715 11 21 1987 17 OL F 20 23
## 6833 18105 12 15 1990 17 OL M 21 30
## 6834 18106 12 15 1990 17 OL F 20 35
## 6835 19787 3 7 1992 17 OL F 19 37
## 6836 19892 4 4 1992 17 OL M 21 35
## 6837 20534 12 21 1992 17 OL F 20 25
## 6838 20606 1 24 1993 17 OL F 20 28
## 6839 20650 2 19 1993 17 OL F 20 26
## 6840 21276 12 14 1993 17 OL M 18 20
## 6841 397 11 13 1977 17 RM F 16 7
## 6842 695 3 12 1978 17 RM <NA> NA NA
## 6843 2315 1 15 1980 17 RM F 17 9
## 6844 4966 11 22 1981 17 RM M 18 10
## 6845 5088 12 30 1981 17 RM F 17 10
## 6846 5314 1 25 1982 17 RM M 17 10
## 6847 5328 2 22 1982 17 RM F 15 9
## 6848 5353 2 22 1982 17 RM M 17 9
## 6849 5374 2 22 1982 17 RM M 17 11
## 6850 5380 2 22 1982 17 RM M 16 11
## 6851 5645 3 30 1982 17 RM M 17 10
## 6852 5666 3 30 1982 17 RM M 16 10
## 6853 6254 7 26 1982 17 RM M NA 12
## 6854 7160 1 12 1983 17 RM F 17 9
## 6855 7222 1 12 1983 17 RM M 17 9
## 6856 7364 2 26 1983 17 RM F 16 10
## 6857 7472 3 14 1983 17 RM F 17 10
## 6858 7659 4 16 1983 17 RM M 17 11
## 6859 8845 2 4 1984 17 RM <NA> NA NA
## 6860 8848 2 4 1984 17 RM F 16 7
## 6861 9853 1 19 1985 17 RM M 16 4
## 6862 10242 4 20 1985 17 RM F 17 6
## 6863 11123 12 7 1985 17 RM F 16 9
## 6864 12194 1 31 1987 17 RM F 16 15
## 6865 12195 1 31 1987 17 RM M 16 9
## 6866 12216 1 31 1987 17 RM M 16 11
## 6867 12833 5 28 1987 17 RM M 15 11
## 6868 12928 6 30 1987 17 RM F 14 8
## 6869 13226 8 25 1987 17 RM F 17 11
## 6870 13541 10 24 1987 17 RM M 18 12
## 6871 13675 11 21 1987 17 RM F 16 10
## 6872 13733 11 21 1987 17 RM M 16 8
## 6873 13871 1 23 1988 17 RM F 17 10
## 6874 14064 2 21 1988 17 RM M 16 9
## 6875 14066 2 21 1988 17 RM F 16 10
## 6876 14201 3 20 1988 17 RM F 17 9
## 6877 14235 3 20 1988 17 RM M 16 9
## 6878 14778 8 9 1988 17 RM F 16 11
## 6879 15486 2 4 1989 17 RM F 17 9
## 6880 15487 2 4 1989 17 RM <NA> NA NA
## 6881 15757 3 13 1989 17 RM F 17 11
## 6882 15782 3 13 1989 17 RM F 17 12
## 6883 15783 3 13 1989 17 RM M 17 11
## 6884 15940 4 2 1989 17 RM F 16 12
## 6885 16009 5 10 1989 17 RM M 17 10
## 6886 16026 5 10 1989 17 RM M 17 10
## 6887 16117 6 3 1989 17 RM F 17 11
## 6888 16130 6 3 1989 17 RM F 16 10
## 6889 16133 6 3 1989 17 RM M 16 7
## 6890 16155 6 3 1989 17 RM M 16 10
## 6891 16226 7 3 1989 17 RM F NA 11
## 6892 16239 7 3 1989 17 RM M NA 10
## 6893 16552 10 8 1989 17 RM F 16 8
## 6894 16592 11 4 1989 17 RM M 17 10
## 6895 16768 12 4 1989 17 RM F 17 12
## 6896 16783 12 4 1989 17 RM M 17 10
## 6897 16787 12 4 1989 17 RM F 17 13
## 6898 16922 1 6 1990 17 RM M 16 11
## 6899 17029 1 29 1990 17 RM M 17 10
## 6900 17149 2 24 1990 17 RM M 17 9
## 6901 17160 2 24 1990 17 RM M 17 10
## 6902 17287 3 29 1990 17 RM M 17 9
## 6903 18192 1 11 1991 17 RM F 16 9
## 6904 18215 1 11 1991 17 RM M 17 9
## 6905 18223 1 11 1991 17 RM M 16 8
## 6906 18241 1 11 1991 17 RM M 16 11
## 6907 18481 3 13 1991 17 RM M 16 9
## 6908 19317 11 14 1991 17 RM F 16 10
## 6909 19454 12 7 1991 17 RM F 16 9
## 6910 19718 2 7 1992 17 RM M 17 12
## 6911 19770 3 7 1992 17 RM M 17 10
## 6912 20990 7 14 1993 17 RM M 16 9
## 6913 22911 10 28 1995 17 RM M 15 11
## 6914 23042 12 2 1995 17 RM M 18 13
## 6915 23130 12 21 1995 17 RM M 17 11
## 6916 23712 4 14 1996 17 RM F 16 9
## 6917 23723 4 14 1996 17 RM M 17 10
## 6918 25218 3 15 1997 17 RM M 17 9
## 6919 25287 3 15 1997 17 RM M 18 11
## 6920 25456 4 12 1997 17 RM F 15 15
## 6921 25543 4 12 1997 17 RM M 17 12
## 6922 31803 3 3 2001 17 RM M 16 8
## 6923 4370 5 3 1981 17 SA <NA> NA NA
## 6924 4785 8 30 1981 17 SA <NA> NA NA
## 6925 8281 9 10 1983 17 SA <NA> NA NA
## 6926 8298 9 10 1983 17 SA <NA> NA NA
## 6927 9294 7 3 1984 17 SA <NA> NA NA
## 6928 9464 8 25 1984 17 SA <NA> NA NA
## 6929 883 5 18 1978 17 PM F 20 22
## 6930 5657 3 30 1982 17 PM F 21 28
## 6931 5697 4 28 1982 17 PM M 21 17
## 6932 10181 4 20 1985 17 PM M 20 16
## 6933 12115 12 14 1986 17 PM M 20 22
## 6934 12631 4 25 1987 17 PM F 20 13
## 6935 12762 5 28 1987 17 PM M 19 17
## 6936 13380 9 26 1987 17 PM M 21 22
## 6937 13719 11 21 1987 17 PM F 20 23
## 6938 24697 11 16 1996 17 PM M 23 23
## 6939 24856 12 18 1996 17 PM M 22 28
## 6940 25002 2 8 1997 17 PM F 20 22
## 6941 25246 3 15 1997 17 PM F 20 23
## 6942 25472 4 12 1997 17 PM F 21 17
## 6943 25526 4 12 1997 17 PM M 22 30
## 6944 25826 5 10 1997 17 PM F 21 22
## 6945 26070 6 10 1997 17 PM F 21 22
## 6946 26123 6 10 1997 17 PM M 21 21
## 6947 26340 7 9 1997 17 PM M 20 21
## 6948 27049 10 25 1997 17 PM M 23 27
## 6949 27914 5 28 1998 17 PM F 19 9
## 6950 27928 5 28 1998 17 PM F 20 22
## 6951 13886 1 23 1988 17 AH <NA> NA NA
## 6952 13898 1 23 1988 17 AH <NA> NA NA
## 6953 14382 4 18 1988 17 AH <NA> NA NA
## 6954 17532 5 24 1990 17 AH <NA> NA NA
## 6955 17533 5 24 1990 17 AH <NA> NA NA
## 6956 17535 5 24 1990 17 AH <NA> NA NA
## 6957 19817 3 7 1992 17 AH <NA> NA NA
## 6958 20586 1 24 1993 17 AH <NA> NA NA
## 6959 20903 6 18 1993 17 AH <NA> NA NA
## 6960 21383 2 20 1994 17 AH <NA> NA NA
## 6961 21811 10 12 1994 17 AH <NA> NA NA
## 6962 21824 10 12 1994 17 AH <NA> NA NA
## 6963 21899 11 1 1994 17 AH <NA> NA NA
## 6964 23165 12 21 1995 17 AH <NA> NA NA
## 6965 23356 2 24 1996 17 AH <NA> NA NA
## 6966 23517 3 23 1996 17 AH <NA> NA NA
## 6967 26106 6 10 1997 17 AH <NA> NA NA
## 6968 26136 6 10 1997 17 AH <NA> NA NA
## 6969 26811 9 27 1997 17 AH <NA> NA NA
## 6970 27336 12 28 1997 17 AH <NA> NA NA
## 6971 27462 1 31 1998 17 AH <NA> NA NA
## 6972 27547 3 1 1998 17 AH <NA> NA NA
## 6973 27571 3 1 1998 17 AH <NA> NA NA
## 6974 28953 12 22 1998 17 AH <NA> NA NA
## 6975 29203 2 20 1999 17 AH <NA> NA NA
## 6976 29883 10 9 1999 17 AH <NA> NA NA
## 6977 29887 10 9 1999 17 AH <NA> NA NA
## 6978 30968 7 1 2000 17 AH <NA> NA NA
## 6979 31418 9 30 2000 17 AH <NA> NA NA
## 6980 31967 4 21 2001 17 AH <NA> NA NA
## 6981 32861 10 13 2001 17 AH <NA> NA NA
## 6982 33453 2 9 2002 17 AH <NA> NA NA
## 6983 34257 6 15 2002 17 AH <NA> NA NA
## 6984 34481 7 13 2002 17 AH <NA> NA NA
## 6985 18671 5 13 1991 17 DX <NA> NA NA
## 6986 20332 9 26 1992 17 DX <NA> NA NA
## 6987 20522 12 21 1992 17 DX <NA> NA NA
## 6988 30476 3 4 2000 17 DX <NA> NA NA
## 6989 11130 12 7 1985 17 AB <NA> NA NA
## 6990 13901 1 23 1988 17 AB <NA> NA NA
## 6991 15356 1 10 1989 17 AB <NA> NA NA
## 6992 22236 4 29 1995 17 CB <NA> NA NA
## 6993 14466 5 14 1988 17 UL <NA> NA NA
## 6994 26297 7 9 1997 17 PB M 25 29
## 6995 26817 9 27 1997 17 PB F 27 33
## 6996 28170 7 18 1998 17 PB M 27 22
## 6997 28641 9 21 1998 17 PB M 27 31
## 6998 30200 1 8 2000 17 PB M 26 31
## 6999 30332 2 5 2000 17 PB M 26 38
## 7000 31414 9 30 2000 17 PB F 26 30
## 7001 32062 5 26 2001 17 PB M 27 29
## 7002 32194 6 25 2001 17 PB M 27 37
## 7003 32421 8 25 2001 17 PB M 26 34
## 7004 32428 8 25 2001 17 PB M 27 35
## 7005 32430 8 25 2001 17 PB F 21 26
## 7006 32432 8 25 2001 17 PB M 29 42
## 7007 32641 9 22 2001 17 PB F 27 33
## 7008 32646 9 22 2001 17 PB M 27 41
## 7009 32648 9 22 2001 17 PB F 27 29
## 7010 32856 10 13 2001 17 PB F 27 31
## 7011 32858 10 13 2001 17 PB M 27 41
## 7012 33068 11 17 2001 17 PB M 27 41
## 7013 33073 11 17 2001 17 PB F 27 32
## 7014 33270 12 15 2001 17 PB M 27 45
## 7015 33271 12 15 2001 17 PB F 27 32
## 7016 33366 1 12 2002 17 PB F 27 31
## 7017 33368 1 12 2002 17 PB M 47 27
## 7018 33446 2 9 2002 17 PB M 26 47
## 7019 33448 2 9 2002 17 PB F 27 31
## 7020 33610 3 13 2002 17 PB F 27 36
## 7021 33928 4 17 2002 17 PB F 28 47
## 7022 34005 5 15 2002 17 PB F 26 35
## 7023 34010 5 15 2002 17 PB M 26 45
## 7024 34244 6 15 2002 17 PB M 27 47
## 7025 34246 6 15 2002 17 PB M 26 24
## 7026 34250 6 15 2002 17 PB F 27 38
## 7027 34252 6 15 2002 17 PB M 27 28
## 7028 34254 6 15 2002 17 PB F 26 25
## 7029 34258 6 15 2002 17 PB F 27 20
## 7030 34476 7 13 2002 17 PB M 26 28
## 7031 34479 7 13 2002 17 PB F 26 27
## 7032 34485 7 13 2002 17 PB F 27 26
## 7033 34486 7 13 2002 17 PB M 27 33
## 7034 34489 7 13 2002 17 PB F 27 25
## 7035 34683 9 8 2002 17 PB F 26 30
## 7036 34686 9 8 2002 17 PB F 26 31
## 7037 34785 10 5 2002 17 PB M 26 32
## 7038 34786 10 5 2002 17 PB F 27 39
## 7039 34787 10 5 2002 17 PB F 26 29
## 7040 34790 10 5 2002 17 PB <NA> 26 NA
## 7041 34993 11 9 2002 17 PB F 27 32
## 7042 34994 11 9 2002 17 PB F 28 38
## 7043 34995 11 9 2002 17 PB F 26 30
## 7044 34998 11 9 2002 17 PB M 27 44
## 7045 34999 11 9 2002 17 PB F 27 29
## 7046 35001 11 9 2002 17 PB M 26 31
## 7047 35002 11 9 2002 17 PB F 26 25
## 7048 35003 11 9 2002 17 PB F NA NA
## 7049 35215 12 7 2002 17 PB F 25 29
## 7050 35216 12 7 2002 17 PB M 26 30
## 7051 35220 12 7 2002 17 PB F 28 30
## 7052 35221 12 7 2002 17 PB F 27 38
## 7053 35222 12 7 2002 17 PB F 26 31
## 7054 35438 12 29 2002 17 PB F 25 31
## 7055 35439 12 29 2002 17 PB F 26 29
## 7056 35442 12 29 2002 17 PB F 27 30
## 7057 35443 12 29 2002 17 PB F 28 38
## 7058 35446 12 29 2002 17 PB M 26 33
## 7059 35447 12 29 2002 17 PB F 25 29
## 7060 35448 12 29 2002 17 PB M 27 45
## 7061 106 8 20 1977 12 NL <NA> NA NA
## 7062 171 9 11 1977 12 NL <NA> NA NA
## 7063 406 11 14 1977 12 NL <NA> NA NA
## 7064 469 12 11 1977 12 NL <NA> NA NA
## 7065 565 1 10 1978 12 NL <NA> NA NA
## 7066 1119 8 4 1978 12 NL M 33 189
## 7067 1197 9 3 1978 12 NL F NA 158
## 7068 1204 9 3 1978 12 NL M NA 189
## 7069 1319 10 7 1978 12 NL <NA> NA NA
## 7070 1337 10 7 1978 12 NL <NA> NA NA
## 7071 1490 12 2 1978 12 NL M 32 223
## 7072 1729 4 28 1979 12 NL F 31 86
## 7073 1731 4 28 1979 12 NL F 32 239
## 7074 1782 5 29 1979 12 NL M 27 66
## 7075 1784 5 29 1979 12 NL M 30 72
## 7076 1798 5 29 1979 12 NL M 29 70
## 7077 1982 8 22 1979 12 NL F 29 72
## 7078 2078 10 24 1979 12 NL F 32 92
## 7079 2081 10 24 1979 12 NL F 32 211
## 7080 2247 11 18 1979 12 NL F 33 217
## 7081 2305 1 15 1980 12 NL F 32 214
## 7082 2311 1 15 1980 12 NL F 32 114
## 7083 2558 3 9 1980 12 NL M NA 74
## 7084 2751 3 21 1980 12 NL M NA 97
## 7085 3217 8 14 1980 12 NL F 33 173
## 7086 3300 9 8 1980 12 NL F 32 172
## 7087 3374 10 12 1980 12 NL F 33 200
## 7088 3511 11 9 1980 12 NL F 31 193
## 7089 3650 12 16 1980 12 NL F 33 189
## 7090 3785 1 12 1981 12 NL F 33 199
## 7091 3814 1 31 1981 12 NL F 32 195
## 7092 4054 4 5 1981 12 NL F NA 231
## 7093 4876 10 24 1981 12 NL M 34 235
## 7094 4962 11 22 1981 12 NL F NA 264
## 7095 5116 12 31 1981 12 NL M 31 83
## 7096 5201 1 24 1982 12 NL F 32 220
## 7097 5338 2 22 1982 12 NL F 32 226
## 7098 5702 4 28 1982 12 NL F 33 217
## 7099 5837 5 21 1982 12 NL M 32 102
## 7100 5846 5 21 1982 12 NL M 34 252
## 7101 6685 10 23 1982 12 NL F 33 219
## 7102 6738 10 23 1982 12 NL M 31 97
## 7103 7052 11 22 1982 12 NL F 32 118
## 7104 7055 11 22 1982 12 NL F 32 235
## 7105 7145 1 12 1983 12 NL M 32 239
## 7106 7644 4 16 1983 12 NL M 32 94
## 7107 8109 7 16 1983 12 NL M 34 168
## 7108 8162 8 15 1983 12 NL F 32 128
## 7109 8215 8 15 1983 12 NL M 34 187
## 7110 8277 9 10 1983 12 NL F 32 158
## 7111 8497 10 16 1983 12 NL F 31 165
## 7112 8699 12 8 1983 12 NL F 33 170
## 7113 9070 5 12 1984 12 NL F 32 104
## 7114 9206 5 27 1984 12 NL F 32 129
## 7115 9298 7 3 1984 12 NL M 32 126
## 7116 9381 7 31 1984 12 NL M 31 132
## 7117 9463 8 25 1984 12 NL F 31 135
## 7118 9521 9 29 1984 12 NL F 33 146
## 7119 10454 6 15 1985 12 NL M 32 166
## 7120 10465 6 15 1985 12 NL M 33 183
## 7121 10574 7 23 1985 12 NL <NA> 70 NA
## 7122 10646 8 19 1985 12 NL M 33 181
## 7123 10740 9 21 1985 12 NL M 31 155
## 7124 10844 10 12 1985 12 NL M 32 178
## 7125 10962 11 16 1985 12 NL M 32 192
## 7126 11232 3 8 1986 12 NL F 31 170
## 7127 11436 5 10 1986 12 NL F 29 91
## 7128 11441 5 10 1986 12 NL F 31 98
## 7129 11447 5 10 1986 12 NL F 31 205
## 7130 11549 6 4 1986 12 NL F 32 185
## 7131 11651 7 3 1986 12 NL F 30 134
## 7132 11744 8 9 1986 12 NL M 33 180
## 7133 12082 12 14 1986 12 NL M 34 210
## 7134 12186 1 31 1987 12 NL F 33 164
## 7135 12477 4 4 1987 12 NL M 33 196
## 7136 12622 4 25 1987 12 NL M 34 234
## 7137 13054 7 25 1987 12 NL M NA 230
## 7138 13349 9 26 1987 12 NL M 35 218
## 7139 13547 10 24 1987 12 NL M 36 212
## 7140 13671 11 21 1987 12 NL M 34 239
## 7141 14218 3 20 1988 12 NL M NA 232
## 7142 14659 7 14 1988 12 NL F 33 133
## 7143 14746 8 9 1988 12 NL F 34 188
## 7144 14946 10 8 1988 12 NL M 32 NA
## 7145 15169 12 13 1988 12 NL F 30 177
## 7146 15322 1 10 1989 12 NL <NA> NA NA
## 7147 15506 2 4 1989 12 NL F 31 104
## 7148 15684 3 12 1989 12 NL F 33 123
## 7149 15686 3 12 1989 12 NL M 34 249
## 7150 15846 4 1 1989 12 NL F 32 137
## 7151 16014 5 10 1989 12 NL <NA> NA NA
## 7152 16109 6 3 1989 12 NL F 29 57
## 7153 16111 6 3 1989 12 NL F 33 126
## 7154 16224 7 3 1989 12 NL F NA NA
## 7155 16546 10 8 1989 12 NL F 31 185
## 7156 16606 11 4 1989 12 NL F 32 190
## 7157 16995 1 29 1990 12 NL F 31 197
## 7158 17133 2 24 1990 12 NL F 33 194
## 7159 17382 4 24 1990 12 NL M 33 122
## 7160 17825 9 22 1990 12 NL M NA 145
## 7161 17895 10 15 1990 12 NL M 32 138
## 7162 18567 4 19 1991 12 NL M 34 146
## 7163 20184 7 30 1992 12 NL M NA 172
## 7164 20258 8 29 1992 12 NL M 33 175
## 7165 20339 9 26 1992 12 NL M 31 173
## 7166 20437 10 18 1992 12 NL M 31 158
## 7167 20527 12 21 1992 12 NL M 31 167
## 7168 20581 1 24 1993 12 NL M 31 170
## 7169 20584 1 24 1993 12 NL M 31 233
## 7170 21818 10 12 1994 12 NL M 37 220
## 7171 21885 11 1 1994 12 NL M 34 226
## 7172 22847 10 28 1995 12 NL M 34 138
## 7173 22998 12 2 1995 12 NL M 33 152
## 7174 23124 12 21 1995 12 NL F 32 160
## 7175 23894 5 23 1996 12 NL M 21 118
## 7176 24405 9 21 1996 12 NL M 32 184
## 7177 24556 10 12 1996 12 NL M NA 185
## 7178 24708 11 16 1996 12 NL F 34 144
## 7179 25717 5 10 1997 12 NL F 33 214
## 7180 25724 5 10 1997 12 NL M 31 62
## 7181 25766 5 10 1997 12 NL F 30 64
## 7182 25791 5 10 1997 12 NL F 30 63
## 7183 25798 5 10 1997 12 NL M 31 70
## 7184 26049 6 10 1997 12 NL M 33 109
## 7185 26071 6 10 1997 12 NL F 33 186
## 7186 26346 7 9 1997 12 NL F 32 194
## 7187 26584 7 29 1997 12 NL F NA 208
## 7188 26660 7 29 1997 12 NL M 35 121
## 7189 26793 9 27 1997 12 NL F 33 183
## 7190 26854 9 27 1997 12 NL M 30 136
## 7191 26990 10 25 1997 12 NL F NA 172
## 7192 27050 10 25 1997 12 NL M 33 120
## 7193 27181 11 22 1997 12 NL F 34 177
## 7194 27282 11 22 1997 12 NL F 32 122
## 7195 27309 12 28 1997 12 NL F 32 169
## 7196 27440 1 31 1998 12 NL F 34 178
## 7197 27550 3 1 1998 12 NL F 35 NA
## 7198 27762 5 2 1998 12 NL F 31 238
## 7199 27867 5 28 1998 12 NL F 33 199
## 7200 28039 6 27 1998 12 NL F 32 189
## 7201 28344 8 22 1998 12 NL F 33 196
## 7202 28485 9 19 1998 12 NL F 32 175
## 7203 29173 2 20 1999 12 NL F 30 168
## 7204 29321 3 14 1999 12 NL F 32 182
## 7205 29449 4 17 1999 12 NL F 32 190
## 7206 29586 5 15 1999 12 NL <NA> NA 173
## 7207 29715 6 12 1999 12 NL F 33 168
## 7208 29825 9 11 1999 12 NL F 32 203
## 7209 30624 4 30 2000 12 NL F 31 NA
## 7210 30753 6 3 2000 12 NL <NA> NA NA
## 7211 31120 7 22 2000 12 NL <NA> NA 175
## 7212 31227 8 25 2000 12 NL F 32 173
## 7213 31398 9 30 2000 12 NL F 31 164
## 7214 31529 11 25 2000 12 NL F 29 190
## 7215 31638 12 22 2000 12 NL F 30 212
## 7216 31867 3 24 2001 12 NL F 32 207
## 7217 32051 5 26 2001 12 NL F 30 204
## 7218 32175 6 25 2001 12 NL F NA NA
## 7219 32179 6 25 2001 12 NL F 31 221
## 7220 33049 11 17 2001 12 NL M 33 280
## 7221 34442 7 13 2002 12 NL F 33 164
## 7222 34677 9 8 2002 12 NL F 32 210
## 7223 34827 10 5 2002 12 NL F 30 200
## 7224 35036 11 9 2002 12 NL F 36 188
## 7225 35249 12 7 2002 12 NL F 33 212
## 7226 35415 12 29 2002 12 NL F 33 200
## 7227 52 7 18 1977 12 DM F 26 NA
## 7228 96 8 20 1977 12 DM M 36 41
## 7229 168 9 11 1977 12 DM M 36 44
## 7230 173 9 11 1977 12 DM F 36 40
## 7231 174 9 11 1977 12 DM M 37 34
## 7232 179 9 11 1977 12 DM M 37 44
## 7233 336 10 18 1977 12 DM M 36 40
## 7234 338 10 18 1977 12 DM M 37 41
## 7235 340 10 18 1977 12 DM F 36 39
## 7236 404 11 14 1977 12 DM M 37 40
## 7237 409 11 14 1977 12 DM F 36 38
## 7238 487 12 11 1977 12 DM F 38 36
## 7239 488 12 11 1977 12 DM M 37 41
## 7240 567 1 10 1978 12 DM F 36 35
## 7241 580 1 10 1978 12 DM M NA 41
## 7242 638 2 20 1978 12 DM F 37 36
## 7243 645 2 20 1978 12 DM M 38 44
## 7244 817 4 10 1978 12 DM F 37 NA
## 7245 824 4 10 1978 12 DM M 38 45
## 7246 866 5 17 1978 12 DM F 37 41
## 7247 957 6 8 1978 12 DM F 33 16
## 7248 960 6 8 1978 12 DM M NA 19
## 7249 970 6 8 1978 12 DM F NA 39
## 7250 1033 7 7 1978 12 DM F 38 44
## 7251 1035 7 7 1978 12 DM M 31 17
## 7252 1053 7 7 1978 12 DM M 35 27
## 7253 1058 7 7 1978 12 DM F 35 40
## 7254 1060 7 7 1978 12 DM M 37 43
## 7255 1125 8 4 1978 12 DM M 38 44
## 7256 1136 8 4 1978 12 DM M 35 32
## 7257 1145 8 4 1978 12 DM F 37 39
## 7258 1207 9 3 1978 12 DM F 35 31
## 7259 1241 9 3 1978 12 DM M 34 37
## 7260 1247 9 3 1978 12 DM M 38 47
## 7261 1322 10 7 1978 12 DM F 37 41
## 7262 1329 10 7 1978 12 DM M 36 40
## 7263 1407 11 4 1978 12 DM M 36 32
## 7264 1417 11 4 1978 12 DM F 35 42
## 7265 1428 11 4 1978 12 DM M 37 45
## 7266 1489 12 2 1978 12 DM M 35 39
## 7267 1558 1 28 1979 12 DM M 36 45
## 7268 1636 2 24 1979 12 DM M 36 47
## 7269 1677 3 31 1979 12 DM M 36 53
## 7270 1743 4 28 1979 12 DM M 37 34
## 7271 1790 5 29 1979 12 DM M 37 43
## 7272 1868 7 3 1979 12 DM M 36 44
## 7273 1925 7 25 1979 12 DM M 37 45
## 7274 1991 8 22 1979 12 DM M 35 47
## 7275 2027 9 22 1979 12 DM F 35 37
## 7276 2029 9 22 1979 12 DM F 37 41
## 7277 2086 10 24 1979 12 DM F 33 40
## 7278 2101 10 24 1979 12 DM M 37 45
## 7279 2213 11 18 1979 12 DM M 36 44
## 7280 2214 11 18 1979 12 DM M 35 51
## 7281 2262 11 18 1979 12 DM F 35 50
## 7282 2265 11 18 1979 12 DM M 36 46
## 7283 2292 1 15 1980 12 DM F 35 40
## 7284 2302 1 15 1980 12 DM M 37 45
## 7285 2415 2 24 1980 12 DM M 35 50
## 7286 2433 2 24 1980 12 DM F 35 40
## 7287 2434 2 24 1980 12 DM M 35 47
## 7288 2436 2 24 1980 12 DM F 36 42
## 7289 2449 2 24 1980 12 DM F 34 23
## 7290 2450 2 24 1980 12 DM F 35 24
## 7291 2482 2 25 1980 12 DM F 35 38
## 7292 2483 2 25 1980 12 DM M 37 51
## 7293 2484 2 25 1980 12 DM F 36 39
## 7294 2569 3 9 1980 12 DM M NA 50
## 7295 2584 3 9 1980 12 DM F NA 43
## 7296 2665 3 9 1980 12 DM M NA 52
## 7297 2686 3 9 1980 12 DM F NA 41
## 7298 2702 3 9 1980 12 DM M NA 56
## 7299 2707 3 9 1980 12 DM F NA 27
## 7300 2737 3 9 1980 12 DM F NA 29
## 7301 2756 3 21 1980 12 DM F NA 51
## 7302 2770 3 21 1980 12 DM F NA 45
## 7303 2778 3 21 1980 12 DM M NA 53
## 7304 2783 3 21 1980 12 DM M NA 50
## 7305 2839 4 17 1980 12 DM F NA 43
## 7306 2843 4 17 1980 12 DM M NA 49
## 7307 2847 4 17 1980 12 DM F NA 43
## 7308 2849 4 17 1980 12 DM M NA 55
## 7309 2864 4 17 1980 12 DM F NA 43
## 7310 2918 5 17 1980 12 DM F 37 43
## 7311 2936 5 17 1980 12 DM F 36 40
## 7312 2941 5 17 1980 12 DM M 36 53
## 7313 2948 5 17 1980 12 DM M 36 29
## 7314 2956 5 17 1980 12 DM M 35 31
## 7315 3086 6 23 1980 12 DM F 35 31
## 7316 3098 6 23 1980 12 DM F 35 39
## 7317 3105 6 23 1980 12 DM F 35 29
## 7318 3119 6 23 1980 12 DM M 36 40
## 7319 3159 7 22 1980 12 DM M 37 54
## 7320 3168 7 22 1980 12 DM F 35 46
## 7321 3219 8 14 1980 12 DM M 37 55
## 7322 3224 8 14 1980 12 DM F 35 44
## 7323 3229 8 14 1980 12 DM M 34 35
## 7324 3304 9 8 1980 12 DM F 35 55
## 7325 3307 9 8 1980 12 DM M 37 55
## 7326 3367 10 12 1980 12 DM F 37 41
## 7327 3373 10 12 1980 12 DM F 36 45
## 7328 3392 10 12 1980 12 DM M 36 61
## 7329 3403 10 12 1980 12 DM M 37 40
## 7330 3478 11 9 1980 12 DM M 36 40
## 7331 3514 11 9 1980 12 DM F 36 39
## 7332 3521 11 9 1980 12 DM F 36 44
## 7333 3531 11 9 1980 12 DM M 38 51
## 7334 3534 11 9 1980 12 DM M 36 56
## 7335 3541 11 9 1980 12 DM M 37 40
## 7336 3602 12 16 1980 12 DM M 37 43
## 7337 3603 12 16 1980 12 DM M 36 32
## 7338 3604 12 16 1980 12 DM M 36 47
## 7339 3606 12 16 1980 12 DM M 39 54
## 7340 3651 12 16 1980 12 DM F 37 40
## 7341 3655 12 16 1980 12 DM F 37 52
## 7342 3664 12 16 1980 12 DM M 37 60
## 7343 3683 12 16 1980 12 DM M 36 44
## 7344 3768 1 12 1981 12 DM M 35 49
## 7345 3769 1 12 1981 12 DM F 34 32
## 7346 3770 1 12 1981 12 DM M 37 50
## 7347 3771 1 12 1981 12 DM F 37 47
## 7348 3792 1 12 1981 12 DM M 37 50
## 7349 3796 1 12 1981 12 DM M 36 61
## 7350 3806 1 12 1981 12 DM <NA> NA NA
## 7351 3808 1 12 1981 12 DM F 37 46
## 7352 3840 1 31 1981 12 DM M 37 55
## 7353 3845 1 31 1981 12 DM M 36 60
## 7354 3849 1 31 1981 12 DM M 36 49
## 7355 3854 1 31 1981 12 DM M 37 46
## 7356 3855 1 31 1981 12 DM F 37 48
## 7357 3978 3 9 1981 12 DM F 35 22
## 7358 3983 3 9 1981 12 DM F 36 45
## 7359 3985 3 9 1981 12 DM F 37 42
## 7360 3990 3 9 1981 12 DM M 37 60
## 7361 4062 4 5 1981 12 DM F NA 54
## 7362 4070 4 5 1981 12 DM M NA 44
## 7363 4102 4 5 1981 12 DM F NA 47
## 7364 4105 4 5 1981 12 DM M NA 43
## 7365 4124 4 5 1981 12 DM M NA 59
## 7366 4138 4 5 1981 12 DM F NA 49
## 7367 4144 4 5 1981 12 DM F NA 42
## 7368 4145 4 5 1981 12 DM F NA 45
## 7369 4154 4 5 1981 12 DM M 36 50
## 7370 4157 4 5 1981 12 DM M NA 49
## 7371 4188 4 5 1981 12 DM M NA 45
## 7372 4359 5 3 1981 12 DM M 35 60
## 7373 4381 5 3 1981 12 DM M 35 29
## 7374 4389 5 3 1981 12 DM F 37 56
## 7375 4394 5 3 1981 12 DM F NA NA
## 7376 4401 5 3 1981 12 DM F 37 46
## 7377 4560 6 5 1981 12 DM M 37 36
## 7378 4571 6 5 1981 12 DM F 36 22
## 7379 4591 6 5 1981 12 DM M 35 22
## 7380 4592 6 5 1981 12 DM M 36 61
## 7381 4595 6 5 1981 12 DM F 37 43
## 7382 4605 7 7 1981 12 DM M 38 39
## 7383 4612 7 7 1981 12 DM F 37 48
## 7384 4617 7 7 1981 12 DM F 37 47
## 7385 4630 7 7 1981 12 DM M 35 34
## 7386 4634 7 7 1981 12 DM F 35 26
## 7387 4636 7 7 1981 12 DM M 37 58
## 7388 4642 7 7 1981 12 DM M 37 48
## 7389 4722 7 31 1981 12 DM M 37 39
## 7390 4733 7 31 1981 12 DM M 36 56
## 7391 4734 7 31 1981 12 DM F 35 43
## 7392 4745 7 31 1981 12 DM M 36 36
## 7393 4746 7 31 1981 12 DM F 36 46
## 7394 4757 8 30 1981 12 DM M 36 58
## 7395 4761 8 30 1981 12 DM M 37 44
## 7396 4771 8 30 1981 12 DM M 36 27
## 7397 4772 8 30 1981 12 DM M NA 35
## 7398 4811 9 29 1981 12 DM M 37 42
## 7399 4817 9 29 1981 12 DM F 37 50
## 7400 4818 9 29 1981 12 DM M 37 45
## 7401 4819 9 29 1981 12 DM M 38 43
## 7402 4884 10 24 1981 12 DM M 39 43
## 7403 4892 10 24 1981 12 DM M 36 44
## 7404 4895 10 24 1981 12 DM F 37 44
## 7405 4901 10 24 1981 12 DM F 37 43
## 7406 4906 10 24 1981 12 DM M 39 51
## 7407 4981 11 22 1981 12 DM M 38 49
## 7408 4989 11 22 1981 12 DM M 39 56
## 7409 4997 11 22 1981 12 DM F 38 54
## 7410 5000 11 22 1981 12 DM M 38 49
## 7411 5128 12 31 1981 12 DM M 35 26
## 7412 5131 12 31 1981 12 DM M 38 49
## 7413 5145 12 31 1981 12 DM M 36 46
## 7414 5146 12 31 1981 12 DM F 37 43
## 7415 5150 12 31 1981 12 DM M 38 50
## 7416 5210 1 24 1982 12 DM M 38 48
## 7417 5219 1 24 1982 12 DM M 38 48
## 7418 5221 1 24 1982 12 DM F 38 44
## 7419 5237 1 24 1982 12 DM M 37 48
## 7420 5249 1 24 1982 12 DM M 34 33
## 7421 5268 1 24 1982 12 DM M 37 50
## 7422 5334 2 22 1982 12 DM <NA> NA NA
## 7423 5348 2 22 1982 12 DM F 37 48
## 7424 5367 2 22 1982 12 DM M 37 47
## 7425 5368 2 22 1982 12 DM M 38 51
## 7426 5370 2 22 1982 12 DM M 37 39
## 7427 5383 2 22 1982 12 DM F 33 46
## 7428 5531 3 29 1982 12 DM F 36 44
## 7429 5533 3 29 1982 12 DM M 37 48
## 7430 5554 3 29 1982 12 DM M 36 45
## 7431 5557 3 29 1982 12 DM M 37 49
## 7432 5570 3 29 1982 12 DM F 37 46
## 7433 5592 3 29 1982 12 DM F 33 38
## 7434 5711 4 28 1982 12 DM F 37 41
## 7435 5719 4 28 1982 12 DM M 37 46
## 7436 5733 4 28 1982 12 DM M 36 47
## 7437 5745 4 28 1982 12 DM M 37 48
## 7438 5746 4 28 1982 12 DM F 37 44
## 7439 5752 4 28 1982 12 DM M 37 51
## 7440 5757 4 28 1982 12 DM F 36 42
## 7441 5851 5 21 1982 12 DM F 37 42
## 7442 5872 5 21 1982 12 DM M 36 46
## 7443 5887 5 21 1982 12 DM F 36 49
## 7444 5896 5 21 1982 12 DM F 34 24
## 7445 5903 5 21 1982 12 DM F 36 45
## 7446 6061 6 29 1982 12 DM M NA 49
## 7447 6086 6 29 1982 12 DM F NA 55
## 7448 6088 6 29 1982 12 DM F NA 39
## 7449 6107 6 29 1982 12 DM M NA 48
## 7450 6117 6 29 1982 12 DM F NA 33
## 7451 6123 6 29 1982 12 DM F NA 42
## 7452 6132 6 29 1982 12 DM F NA 44
## 7453 6226 7 26 1982 12 DM M NA 49
## 7454 6246 7 26 1982 12 DM F NA 40
## 7455 6256 7 26 1982 12 DM F NA 21
## 7456 6261 7 26 1982 12 DM M NA 48
## 7457 6269 7 26 1982 12 DM F NA 42
## 7458 6271 7 26 1982 12 DM M NA 33
## 7459 6276 7 26 1982 12 DM F NA 42
## 7460 6345 8 15 1982 12 DM M 36 51
## 7461 6350 8 15 1982 12 DM F 36 34
## 7462 6361 8 15 1982 12 DM F 38 41
## 7463 6369 8 15 1982 12 DM M 34 29
## 7464 6376 8 15 1982 12 DM M 35 47
## 7465 6396 8 15 1982 12 DM F 34 27
## 7466 6403 8 15 1982 12 DM F 33 42
## 7467 6421 8 15 1982 12 DM M 36 37
## 7468 6530 9 18 1982 12 DM F 37 42
## 7469 6578 9 18 1982 12 DM M 37 48
## 7470 6581 9 18 1982 12 DM F 34 43
## 7471 6588 9 18 1982 12 DM M 35 36
## 7472 6599 9 18 1982 12 DM M 37 40
## 7473 6695 10 23 1982 12 DM F 37 39
## 7474 6698 10 23 1982 12 DM F 37 43
## 7475 6707 10 23 1982 12 DM M 38 45
## 7476 6708 10 23 1982 12 DM M 36 36
## 7477 6714 10 23 1982 12 DM M 37 45
## 7478 6719 10 23 1982 12 DM F 36 39
## 7479 6748 10 23 1982 12 DM F 34 47
## 7480 6777 10 23 1982 12 DM M 38 39
## 7481 6780 10 23 1982 12 DM F 35 37
## 7482 7060 11 22 1982 12 DM F 38 40
## 7483 7069 11 22 1982 12 DM F 37 38
## 7484 7098 11 22 1982 12 DM F 36 42
## 7485 7101 11 22 1982 12 DM M 34 44
## 7486 7105 11 22 1982 12 DM M 37 38
## 7487 7135 11 22 1982 12 DM M 37 41
## 7488 7148 1 12 1983 12 DM F 35 38
## 7489 7174 1 12 1983 12 DM F 37 36
## 7490 7192 1 12 1983 12 DM M 35 44
## 7491 7198 1 12 1983 12 DM M 37 39
## 7492 7216 1 12 1983 12 DM F 33 38
## 7493 7225 1 12 1983 12 DM M 38 42
## 7494 7327 2 26 1983 12 DM F 37 38
## 7495 7331 2 26 1983 12 DM M 36 43
## 7496 7339 2 26 1983 12 DM F 34 40
## 7497 7343 2 26 1983 12 DM M 37 42
## 7498 7355 2 26 1983 12 DM F 34 39
## 7499 7366 2 26 1983 12 DM M 35 42
## 7500 7485 3 14 1983 12 DM M 36 51
## 7501 7495 3 14 1983 12 DM F 37 40
## 7502 7513 3 14 1983 12 DM F 34 42
## 7503 7517 3 14 1983 12 DM M 37 44
## 7504 7528 3 14 1983 12 DM M 37 46
## 7505 7663 4 16 1983 12 DM M 38 43
## 7506 7669 4 16 1983 12 DM F 38 47
## 7507 7694 4 16 1983 12 DM M 37 46
## 7508 7713 4 16 1983 12 DM M 38 42
## 7509 7805 5 14 1983 12 DM M 38 40
## 7510 7823 5 14 1983 12 DM F 38 46
## 7511 7957 6 17 1983 12 DM F 36 44
## 7512 7973 6 17 1983 12 DM M 36 47
## 7513 7980 6 17 1983 12 DM F 31 16
## 7514 8084 7 16 1983 12 DM F 32 27
## 7515 8086 7 16 1983 12 DM F 37 46
## 7516 8112 7 16 1983 12 DM F 35 31
## 7517 8178 8 15 1983 12 DM F 36 48
## 7518 8184 8 15 1983 12 DM F 33 33
## 7519 8197 8 15 1983 12 DM F 35 30
## 7520 8209 8 15 1983 12 DM F 35 37
## 7521 8301 9 10 1983 12 DM F 37 45
## 7522 8316 9 10 1983 12 DM F 35 36
## 7523 8334 9 10 1983 12 DM F 34 40
## 7524 8508 10 16 1983 12 DM F 34 37
## 7525 8519 10 16 1983 12 DM F 36 42
## 7526 8524 10 16 1983 12 DM F 36 40
## 7527 8553 10 16 1983 12 DM F 34 37
## 7528 8563 11 12 1983 12 DM F 36 38
## 7529 8611 11 12 1983 12 DM F 36 37
## 7530 8615 11 12 1983 12 DM M 36 43
## 7531 8617 11 12 1983 12 DM F 34 31
## 7532 8619 11 12 1983 12 DM M 36 39
## 7533 8721 12 8 1983 12 DM F 35 36
## 7534 8737 12 8 1983 12 DM F 37 38
## 7535 8814 2 4 1984 12 DM F 35 37
## 7536 8841 2 4 1984 12 DM F 37 37
## 7537 8919 3 12 1984 12 DM F 36 40
## 7538 8937 3 12 1984 12 DM M 36 44
## 7539 9014 4 9 1984 12 DM F 36 42
## 7540 9079 5 12 1984 12 DM M 35 40
## 7541 9090 5 12 1984 12 DM M 36 47
## 7542 9097 5 12 1984 12 DM F 36 38
## 7543 9219 5 27 1984 12 DM F 36 24
## 7544 9230 5 27 1984 12 DM F 34 24
## 7545 9237 5 27 1984 12 DM F 36 44
## 7546 9295 7 3 1984 12 DM F 35 33
## 7547 9309 7 3 1984 12 DM F 32 40
## 7548 9373 7 31 1984 12 DM M 36 49
## 7549 9387 7 31 1984 12 DM F 36 43
## 7550 9395 7 31 1984 12 DM F 36 32
## 7551 9399 7 31 1984 12 DM F 36 46
## 7552 9470 8 25 1984 12 DM F 34 41
## 7553 9474 8 25 1984 12 DM F 36 44
## 7554 9485 8 25 1984 12 DM F 35 37
## 7555 9518 9 29 1984 12 DM M 35 40
## 7556 9530 9 29 1984 12 DM F 36 40
## 7557 9542 9 29 1984 12 DM F 35 34
## 7558 9545 9 29 1984 12 DM F 35 45
## 7559 9546 9 29 1984 12 DM F 35 41
## 7560 9617 10 20 1984 12 DM M 35 39
## 7561 9630 10 20 1984 12 DM F 35 39
## 7562 9636 10 20 1984 12 DM F 36 41
## 7563 9642 10 20 1984 12 DM F 34 42
## 7564 9663 10 20 1984 12 DM F 35 40
## 7565 9718 12 30 1984 12 DM F 35 45
## 7566 9719 12 30 1984 12 DM M 34 46
## 7567 9723 12 30 1984 12 DM F 34 45
## 7568 9724 12 30 1984 12 DM F 35 44
## 7569 9732 12 30 1984 12 DM F 36 46
## 7570 9736 12 30 1984 12 DM M 37 54
## 7571 9804 1 19 1985 12 DM F 35 30
## 7572 9807 1 19 1985 12 DM F 37 33
## 7573 9818 1 19 1985 12 DM M 37 30
## 7574 9825 1 19 1985 12 DM M 37 35
## 7575 9832 1 19 1985 12 DM F 35 36
## 7576 9858 1 19 1985 12 DM F 35 36
## 7577 9940 2 16 1985 12 DM M 35 38
## 7578 9954 2 16 1985 12 DM F 36 41
## 7579 9955 2 16 1985 12 DM F 35 38
## 7580 9970 2 16 1985 12 DM M 37 45
## 7581 10050 3 16 1985 12 DM M 36 47
## 7582 10060 3 16 1985 12 DM M 36 43
## 7583 10062 3 16 1985 12 DM F 37 38
## 7584 10065 3 16 1985 12 DM F 36 40
## 7585 10165 4 20 1985 12 DM F 35 48
## 7586 10174 4 20 1985 12 DM F 36 43
## 7587 10190 4 20 1985 12 DM M 39 46
## 7588 10215 4 20 1985 12 DM M 35 41
## 7589 10238 4 20 1985 12 DM M 39 50
## 7590 10240 4 20 1985 12 DM M 38 49
## 7591 10244 4 20 1985 12 DM F 38 53
## 7592 10251 4 20 1985 12 DM F 38 44
## 7593 10384 5 23 1985 12 DM F 38 40
## 7594 10400 5 23 1985 12 DM M 38 46
## 7595 10403 5 23 1985 12 DM F 36 34
## 7596 10406 5 23 1985 12 DM F 24 33
## 7597 10460 6 15 1985 12 DM M 38 46
## 7598 10463 6 15 1985 12 DM F 36 53
## 7599 10469 6 15 1985 12 DM M 37 42
## 7600 10471 6 15 1985 12 DM F 34 32
## 7601 10479 6 15 1985 12 DM F 35 27
## 7602 10482 6 15 1985 12 DM F 34 36
## 7603 10551 7 23 1985 12 DM M 37 50
## 7604 10558 7 23 1985 12 DM F 36 47
## 7605 10562 7 23 1985 12 DM F 36 44
## 7606 10567 7 23 1985 12 DM M 33 26
## 7607 10571 7 23 1985 12 DM F 36 40
## 7608 10643 8 19 1985 12 DM M 37 50
## 7609 10661 8 19 1985 12 DM F 35 34
## 7610 10664 8 19 1985 12 DM F 36 46
## 7611 10666 8 19 1985 12 DM F 35 42
## 7612 10751 9 21 1985 12 DM F 35 43
## 7613 10752 9 21 1985 12 DM M 37 48
## 7614 10754 9 21 1985 12 DM F 35 40
## 7615 10756 9 21 1985 12 DM M 38 53
## 7616 10763 9 21 1985 12 DM M 34 38
## 7617 10843 10 12 1985 12 DM M 38 46
## 7618 10865 10 12 1985 12 DM F 33 23
## 7619 10870 10 12 1985 12 DM F 37 42
## 7620 10872 10 12 1985 12 DM F 37 37
## 7621 10878 10 12 1985 12 DM F 34 41
## 7622 10881 10 12 1985 12 DM M 37 49
## 7623 10972 11 16 1985 12 DM F 38 43
## 7624 10974 11 16 1985 12 DM F 37 36
## 7625 10983 11 16 1985 12 DM M 38 46
## 7626 10987 11 16 1985 12 DM <NA> NA NA
## 7627 10997 11 16 1985 12 DM F 36 38
## 7628 11000 11 16 1985 12 DM F 35 40
## 7629 11119 12 7 1985 12 DM M 35 46
## 7630 11128 12 7 1985 12 DM F 36 38
## 7631 11143 12 7 1985 12 DM F 36 40
## 7632 11251 3 8 1986 12 DM M 37 46
## 7633 11264 3 8 1986 12 DM M 37 51
## 7634 11269 3 8 1986 12 DM M 39 52
## 7635 11270 3 8 1986 12 DM F 38 37
## 7636 11274 3 8 1986 12 DM F 37 48
## 7637 11355 4 12 1986 12 DM M 38 52
## 7638 11364 4 12 1986 12 DM M 36 48
## 7639 11368 4 12 1986 12 DM F 34 43
## 7640 11371 4 12 1986 12 DM F 36 46
## 7641 11372 4 12 1986 12 DM M 36 42
## 7642 11464 5 10 1986 12 DM M 37 50
## 7643 11477 5 10 1986 12 DM F 38 42
## 7644 11484 5 10 1986 12 DM F 36 43
## 7645 11565 6 4 1986 12 DM F 37 44
## 7646 11572 6 4 1986 12 DM M 34 26
## 7647 11574 6 4 1986 12 DM M 37 43
## 7648 11579 6 4 1986 12 DM F 37 41
## 7649 11657 7 3 1986 12 DM M 36 50
## 7650 11665 7 3 1986 12 DM M 35 35
## 7651 11676 7 3 1986 12 DM F 36 42
## 7652 11680 7 3 1986 12 DM F 36 50
## 7653 11739 8 9 1986 12 DM F 34 47
## 7654 11751 8 9 1986 12 DM F 35 43
## 7655 11822 9 6 1986 12 DM F 33 44
## 7656 11832 9 6 1986 12 DM F 37 44
## 7657 11910 10 4 1986 12 DM F 35 47
## 7658 11912 10 4 1986 12 DM M 33 26
## 7659 11985 11 15 1986 12 DM F 37 45
## 7660 11996 11 15 1986 12 DM M 35 33
## 7661 12008 11 15 1986 12 DM M 35 49
## 7662 12093 12 14 1986 12 DM F 36 44
## 7663 12094 12 14 1986 12 DM M 35 38
## 7664 12202 1 31 1987 12 DM F 35 44
## 7665 12204 1 31 1987 12 DM M 35 39
## 7666 12223 1 31 1987 12 DM M 35 57
## 7667 12358 3 1 1987 12 DM F 36 46
## 7668 12359 3 1 1987 12 DM M 35 42
## 7669 12378 3 1 1987 12 DM M 36 52
## 7670 12500 4 4 1987 12 DM F 37 51
## 7671 12513 4 4 1987 12 DM M 36 49
## 7672 12528 4 4 1987 12 DM F 36 43
## 7673 12646 4 25 1987 12 DM M 36 48
## 7674 12648 4 25 1987 12 DM F 36 30
## 7675 12652 4 25 1987 12 DM F 37 46
## 7676 12666 4 25 1987 12 DM F 35 56
## 7677 12817 5 28 1987 12 DM F 36 45
## 7678 12837 5 28 1987 12 DM F 35 43
## 7679 12864 5 28 1987 12 DM M 38 48
## 7680 12916 6 30 1987 12 DM M 37 48
## 7681 12935 6 30 1987 12 DM M 32 45
## 7682 12945 6 30 1987 12 DM M 33 21
## 7683 12955 6 30 1987 12 DM F 33 48
## 7684 13080 7 25 1987 12 DM F NA 39
## 7685 13085 7 25 1987 12 DM M NA 44
## 7686 13089 7 25 1987 12 DM M NA 30
## 7687 13249 8 25 1987 12 DM M 37 43
## 7688 13253 8 25 1987 12 DM F 36 40
## 7689 13399 9 26 1987 12 DM F 36 41
## 7690 13402 9 26 1987 12 DM M 38 49
## 7691 13535 10 24 1987 12 DM M 36 44
## 7692 13695 11 21 1987 12 DM M 36 43
## genus species taxa plot_type
## 1 Neotoma albigula Rodent Control
## 2 Neotoma albigula Rodent Control
## 3 Neotoma albigula Rodent Control
## 4 Neotoma albigula Rodent Control
## 5 Neotoma albigula Rodent Control
## 6 Neotoma albigula Rodent Control
## 7 Neotoma albigula Rodent Control
## 8 Neotoma albigula Rodent Control
## 9 Neotoma albigula Rodent Control
## 10 Neotoma albigula Rodent Control
## 11 Neotoma albigula Rodent Control
## 12 Neotoma albigula Rodent Control
## 13 Neotoma albigula Rodent Control
## 14 Neotoma albigula Rodent Control
## 15 Neotoma albigula Rodent Control
## 16 Neotoma albigula Rodent Control
## 17 Neotoma albigula Rodent Control
## 18 Neotoma albigula Rodent Control
## 19 Neotoma albigula Rodent Control
## 20 Neotoma albigula Rodent Control
## 21 Neotoma albigula Rodent Control
## 22 Neotoma albigula Rodent Control
## 23 Neotoma albigula Rodent Control
## 24 Neotoma albigula Rodent Control
## 25 Neotoma albigula Rodent Control
## 26 Neotoma albigula Rodent Control
## 27 Neotoma albigula Rodent Control
## 28 Neotoma albigula Rodent Control
## 29 Neotoma albigula Rodent Control
## 30 Neotoma albigula Rodent Control
## 31 Neotoma albigula Rodent Control
## 32 Neotoma albigula Rodent Control
## 33 Neotoma albigula Rodent Control
## 34 Neotoma albigula Rodent Control
## 35 Neotoma albigula Rodent Control
## 36 Neotoma albigula Rodent Control
## 37 Neotoma albigula Rodent Control
## 38 Neotoma albigula Rodent Control
## 39 Neotoma albigula Rodent Control
## 40 Neotoma albigula Rodent Control
## 41 Neotoma albigula Rodent Control
## 42 Neotoma albigula Rodent Control
## 43 Neotoma albigula Rodent Control
## 44 Neotoma albigula Rodent Control
## 45 Neotoma albigula Rodent Control
## 46 Neotoma albigula Rodent Control
## 47 Neotoma albigula Rodent Control
## 48 Neotoma albigula Rodent Control
## 49 Neotoma albigula Rodent Control
## 50 Neotoma albigula Rodent Control
## 51 Neotoma albigula Rodent Control
## 52 Neotoma albigula Rodent Control
## 53 Neotoma albigula Rodent Control
## 54 Neotoma albigula Rodent Control
## 55 Neotoma albigula Rodent Control
## 56 Neotoma albigula Rodent Control
## 57 Neotoma albigula Rodent Control
## 58 Neotoma albigula Rodent Control
## 59 Neotoma albigula Rodent Control
## 60 Neotoma albigula Rodent Control
## 61 Neotoma albigula Rodent Control
## 62 Neotoma albigula Rodent Control
## 63 Neotoma albigula Rodent Control
## 64 Neotoma albigula Rodent Control
## 65 Neotoma albigula Rodent Control
## 66 Neotoma albigula Rodent Control
## 67 Neotoma albigula Rodent Control
## 68 Neotoma albigula Rodent Control
## 69 Neotoma albigula Rodent Control
## 70 Neotoma albigula Rodent Control
## 71 Neotoma albigula Rodent Control
## 72 Neotoma albigula Rodent Control
## 73 Neotoma albigula Rodent Control
## 74 Neotoma albigula Rodent Control
## 75 Neotoma albigula Rodent Control
## 76 Neotoma albigula Rodent Control
## 77 Neotoma albigula Rodent Control
## 78 Neotoma albigula Rodent Control
## 79 Neotoma albigula Rodent Control
## 80 Neotoma albigula Rodent Control
## 81 Neotoma albigula Rodent Control
## 82 Neotoma albigula Rodent Control
## 83 Neotoma albigula Rodent Control
## 84 Neotoma albigula Rodent Control
## 85 Neotoma albigula Rodent Control
## 86 Neotoma albigula Rodent Control
## 87 Neotoma albigula Rodent Control
## 88 Neotoma albigula Rodent Control
## 89 Neotoma albigula Rodent Control
## 90 Neotoma albigula Rodent Control
## 91 Neotoma albigula Rodent Control
## 92 Neotoma albigula Rodent Control
## 93 Neotoma albigula Rodent Control
## 94 Neotoma albigula Rodent Control
## 95 Neotoma albigula Rodent Control
## 96 Neotoma albigula Rodent Control
## 97 Neotoma albigula Rodent Control
## 98 Neotoma albigula Rodent Control
## 99 Neotoma albigula Rodent Control
## 100 Neotoma albigula Rodent Control
## 101 Neotoma albigula Rodent Control
## 102 Neotoma albigula Rodent Control
## 103 Neotoma albigula Rodent Control
## 104 Neotoma albigula Rodent Control
## 105 Neotoma albigula Rodent Control
## 106 Neotoma albigula Rodent Control
## 107 Neotoma albigula Rodent Control
## 108 Neotoma albigula Rodent Control
## 109 Neotoma albigula Rodent Control
## 110 Neotoma albigula Rodent Control
## 111 Neotoma albigula Rodent Control
## 112 Neotoma albigula Rodent Control
## 113 Neotoma albigula Rodent Control
## 114 Neotoma albigula Rodent Control
## 115 Neotoma albigula Rodent Control
## 116 Neotoma albigula Rodent Control
## 117 Neotoma albigula Rodent Control
## 118 Neotoma albigula Rodent Control
## 119 Neotoma albigula Rodent Control
## 120 Neotoma albigula Rodent Control
## 121 Neotoma albigula Rodent Control
## 122 Neotoma albigula Rodent Control
## 123 Neotoma albigula Rodent Control
## 124 Neotoma albigula Rodent Control
## 125 Neotoma albigula Rodent Control
## 126 Neotoma albigula Rodent Control
## 127 Neotoma albigula Rodent Control
## 128 Neotoma albigula Rodent Control
## 129 Neotoma albigula Rodent Control
## 130 Neotoma albigula Rodent Control
## 131 Neotoma albigula Rodent Control
## 132 Neotoma albigula Rodent Control
## 133 Neotoma albigula Rodent Control
## 134 Neotoma albigula Rodent Control
## 135 Neotoma albigula Rodent Control
## 136 Neotoma albigula Rodent Control
## 137 Neotoma albigula Rodent Control
## 138 Neotoma albigula Rodent Control
## 139 Neotoma albigula Rodent Control
## 140 Neotoma albigula Rodent Control
## 141 Neotoma albigula Rodent Control
## 142 Neotoma albigula Rodent Control
## 143 Neotoma albigula Rodent Control
## 144 Neotoma albigula Rodent Control
## 145 Neotoma albigula Rodent Control
## 146 Neotoma albigula Rodent Control
## 147 Neotoma albigula Rodent Control
## 148 Neotoma albigula Rodent Control
## 149 Neotoma albigula Rodent Control
## 150 Neotoma albigula Rodent Control
## 151 Neotoma albigula Rodent Control
## 152 Neotoma albigula Rodent Control
## 153 Neotoma albigula Rodent Control
## 154 Neotoma albigula Rodent Control
## 155 Neotoma albigula Rodent Control
## 156 Neotoma albigula Rodent Control
## 157 Neotoma albigula Rodent Control
## 158 Neotoma albigula Rodent Control
## 159 Neotoma albigula Rodent Control
## 160 Neotoma albigula Rodent Control
## 161 Neotoma albigula Rodent Control
## 162 Neotoma albigula Rodent Control
## 163 Neotoma albigula Rodent Control
## 164 Neotoma albigula Rodent Control
## 165 Neotoma albigula Rodent Control
## 166 Neotoma albigula Rodent Control
## 167 Neotoma albigula Rodent Control
## 168 Neotoma albigula Rodent Control
## 169 Neotoma albigula Rodent Control
## 170 Neotoma albigula Rodent Control
## 171 Neotoma albigula Rodent Control
## 172 Neotoma albigula Rodent Control
## 173 Neotoma albigula Rodent Control
## 174 Neotoma albigula Rodent Control
## 175 Neotoma albigula Rodent Control
## 176 Neotoma albigula Rodent Control
## 177 Neotoma albigula Rodent Control
## 178 Neotoma albigula Rodent Control
## 179 Neotoma albigula Rodent Control
## 180 Neotoma albigula Rodent Control
## 181 Neotoma albigula Rodent Control
## 182 Neotoma albigula Rodent Control
## 183 Neotoma albigula Rodent Control
## 184 Neotoma albigula Rodent Control
## 185 Neotoma albigula Rodent Control
## 186 Neotoma albigula Rodent Control
## 187 Neotoma albigula Rodent Control
## 188 Neotoma albigula Rodent Control
## 189 Neotoma albigula Rodent Control
## 190 Neotoma albigula Rodent Control
## 191 Neotoma albigula Rodent Control
## 192 Neotoma albigula Rodent Control
## 193 Neotoma albigula Rodent Control
## 194 Neotoma albigula Rodent Control
## 195 Neotoma albigula Rodent Control
## 196 Neotoma albigula Rodent Control
## 197 Neotoma albigula Rodent Control
## 198 Neotoma albigula Rodent Control
## 199 Neotoma albigula Rodent Control
## 200 Neotoma albigula Rodent Control
## 201 Neotoma albigula Rodent Control
## 202 Dipodomys merriami Rodent Control
## 203 Dipodomys merriami Rodent Control
## 204 Dipodomys merriami Rodent Control
## 205 Dipodomys merriami Rodent Control
## 206 Dipodomys merriami Rodent Control
## 207 Dipodomys merriami Rodent Control
## 208 Dipodomys merriami Rodent Control
## 209 Dipodomys merriami Rodent Control
## 210 Dipodomys merriami Rodent Control
## 211 Dipodomys merriami Rodent Control
## 212 Dipodomys merriami Rodent Control
## 213 Dipodomys merriami Rodent Control
## 214 Dipodomys merriami Rodent Control
## 215 Dipodomys merriami Rodent Control
## 216 Dipodomys merriami Rodent Control
## 217 Dipodomys merriami Rodent Control
## 218 Dipodomys merriami Rodent Control
## 219 Dipodomys merriami Rodent Control
## 220 Dipodomys merriami Rodent Control
## 221 Dipodomys merriami Rodent Control
## 222 Dipodomys merriami Rodent Control
## 223 Dipodomys merriami Rodent Control
## 224 Dipodomys merriami Rodent Control
## 225 Dipodomys merriami Rodent Control
## 226 Dipodomys merriami Rodent Control
## 227 Dipodomys merriami Rodent Control
## 228 Dipodomys merriami Rodent Control
## 229 Dipodomys merriami Rodent Control
## 230 Dipodomys merriami Rodent Control
## 231 Dipodomys merriami Rodent Control
## 232 Dipodomys merriami Rodent Control
## 233 Dipodomys merriami Rodent Control
## 234 Dipodomys merriami Rodent Control
## 235 Dipodomys merriami Rodent Control
## 236 Dipodomys merriami Rodent Control
## 237 Dipodomys merriami Rodent Control
## 238 Dipodomys merriami Rodent Control
## 239 Dipodomys merriami Rodent Control
## 240 Dipodomys merriami Rodent Control
## 241 Dipodomys merriami Rodent Control
## 242 Dipodomys merriami Rodent Control
## 243 Dipodomys merriami Rodent Control
## 244 Dipodomys merriami Rodent Control
## 245 Dipodomys merriami Rodent Control
## 246 Dipodomys merriami Rodent Control
## 247 Dipodomys merriami Rodent Control
## 248 Dipodomys merriami Rodent Control
## 249 Dipodomys merriami Rodent Control
## 250 Dipodomys merriami Rodent Control
## 251 Dipodomys merriami Rodent Control
## 252 Dipodomys merriami Rodent Control
## 253 Dipodomys merriami Rodent Control
## 254 Dipodomys merriami Rodent Control
## 255 Dipodomys merriami Rodent Control
## 256 Dipodomys merriami Rodent Control
## 257 Dipodomys merriami Rodent Control
## 258 Dipodomys merriami Rodent Control
## 259 Dipodomys merriami Rodent Control
## 260 Dipodomys merriami Rodent Control
## 261 Dipodomys merriami Rodent Control
## 262 Dipodomys merriami Rodent Control
## 263 Dipodomys merriami Rodent Control
## 264 Dipodomys merriami Rodent Control
## 265 Dipodomys merriami Rodent Control
## 266 Dipodomys merriami Rodent Control
## 267 Dipodomys merriami Rodent Control
## 268 Dipodomys merriami Rodent Control
## 269 Dipodomys merriami Rodent Control
## 270 Dipodomys merriami Rodent Control
## 271 Dipodomys merriami Rodent Control
## 272 Dipodomys merriami Rodent Control
## 273 Dipodomys merriami Rodent Control
## 274 Dipodomys merriami Rodent Control
## 275 Dipodomys merriami Rodent Control
## 276 Dipodomys merriami Rodent Control
## 277 Dipodomys merriami Rodent Control
## 278 Dipodomys merriami Rodent Control
## 279 Dipodomys merriami Rodent Control
## 280 Dipodomys merriami Rodent Control
## 281 Dipodomys merriami Rodent Control
## 282 Dipodomys merriami Rodent Control
## 283 Dipodomys merriami Rodent Control
## 284 Dipodomys merriami Rodent Control
## 285 Dipodomys merriami Rodent Control
## 286 Dipodomys merriami Rodent Control
## 287 Dipodomys merriami Rodent Control
## 288 Dipodomys merriami Rodent Control
## 289 Dipodomys merriami Rodent Control
## 290 Dipodomys merriami Rodent Control
## 291 Dipodomys merriami Rodent Control
## 292 Dipodomys merriami Rodent Control
## 293 Dipodomys merriami Rodent Control
## 294 Dipodomys merriami Rodent Control
## 295 Dipodomys merriami Rodent Control
## 296 Dipodomys merriami Rodent Control
## 297 Dipodomys merriami Rodent Control
## 298 Dipodomys merriami Rodent Control
## 299 Dipodomys merriami Rodent Control
## 300 Dipodomys merriami Rodent Control
## 301 Dipodomys merriami Rodent Control
## 302 Dipodomys merriami Rodent Control
## 303 Dipodomys merriami Rodent Control
## 304 Dipodomys merriami Rodent Control
## 305 Dipodomys merriami Rodent Control
## 306 Dipodomys merriami Rodent Control
## 307 Dipodomys merriami Rodent Control
## 308 Dipodomys merriami Rodent Control
## 309 Dipodomys merriami Rodent Control
## 310 Dipodomys merriami Rodent Control
## 311 Dipodomys merriami Rodent Control
## 312 Dipodomys merriami Rodent Control
## 313 Dipodomys merriami Rodent Control
## 314 Dipodomys merriami Rodent Control
## 315 Dipodomys merriami Rodent Control
## 316 Dipodomys merriami Rodent Control
## 317 Dipodomys merriami Rodent Control
## 318 Dipodomys merriami Rodent Control
## 319 Dipodomys merriami Rodent Control
## 320 Dipodomys merriami Rodent Control
## 321 Dipodomys merriami Rodent Control
## 322 Dipodomys merriami Rodent Control
## 323 Dipodomys merriami Rodent Control
## 324 Dipodomys merriami Rodent Control
## 325 Dipodomys merriami Rodent Control
## 326 Dipodomys merriami Rodent Control
## 327 Dipodomys merriami Rodent Control
## 328 Dipodomys merriami Rodent Control
## 329 Dipodomys merriami Rodent Control
## 330 Dipodomys merriami Rodent Control
## 331 Dipodomys merriami Rodent Control
## 332 Dipodomys merriami Rodent Control
## 333 Dipodomys merriami Rodent Control
## 334 Dipodomys merriami Rodent Control
## 335 Dipodomys merriami Rodent Control
## 336 Dipodomys merriami Rodent Control
## 337 Dipodomys merriami Rodent Control
## 338 Dipodomys merriami Rodent Control
## 339 Dipodomys merriami Rodent Control
## 340 Dipodomys merriami Rodent Control
## 341 Dipodomys merriami Rodent Control
## 342 Dipodomys merriami Rodent Control
## 343 Dipodomys merriami Rodent Control
## 344 Dipodomys merriami Rodent Control
## 345 Dipodomys merriami Rodent Control
## 346 Dipodomys merriami Rodent Control
## 347 Dipodomys merriami Rodent Control
## 348 Dipodomys merriami Rodent Control
## 349 Dipodomys merriami Rodent Control
## 350 Dipodomys merriami Rodent Control
## 351 Dipodomys merriami Rodent Control
## 352 Dipodomys merriami Rodent Control
## 353 Dipodomys merriami Rodent Control
## 354 Dipodomys merriami Rodent Control
## 355 Dipodomys merriami Rodent Control
## 356 Dipodomys merriami Rodent Control
## 357 Dipodomys merriami Rodent Control
## 358 Dipodomys merriami Rodent Control
## 359 Dipodomys merriami Rodent Control
## 360 Dipodomys merriami Rodent Control
## 361 Dipodomys merriami Rodent Control
## 362 Dipodomys merriami Rodent Control
## 363 Dipodomys merriami Rodent Control
## 364 Dipodomys merriami Rodent Control
## 365 Dipodomys merriami Rodent Control
## 366 Dipodomys merriami Rodent Control
## 367 Dipodomys merriami Rodent Control
## 368 Dipodomys merriami Rodent Control
## 369 Dipodomys merriami Rodent Control
## 370 Dipodomys merriami Rodent Control
## 371 Dipodomys merriami Rodent Control
## 372 Dipodomys merriami Rodent Control
## 373 Dipodomys merriami Rodent Control
## 374 Dipodomys merriami Rodent Control
## 375 Dipodomys merriami Rodent Control
## 376 Dipodomys merriami Rodent Control
## 377 Dipodomys merriami Rodent Control
## 378 Dipodomys merriami Rodent Control
## 379 Dipodomys merriami Rodent Control
## 380 Dipodomys merriami Rodent Control
## 381 Dipodomys merriami Rodent Control
## 382 Dipodomys merriami Rodent Control
## 383 Dipodomys merriami Rodent Control
## 384 Dipodomys merriami Rodent Control
## 385 Dipodomys merriami Rodent Control
## 386 Dipodomys merriami Rodent Control
## 387 Dipodomys merriami Rodent Control
## 388 Dipodomys merriami Rodent Control
## 389 Dipodomys merriami Rodent Control
## 390 Dipodomys merriami Rodent Control
## 391 Dipodomys merriami Rodent Control
## 392 Dipodomys merriami Rodent Control
## 393 Dipodomys merriami Rodent Control
## 394 Dipodomys merriami Rodent Control
## 395 Dipodomys merriami Rodent Control
## 396 Dipodomys merriami Rodent Control
## 397 Dipodomys merriami Rodent Control
## 398 Dipodomys merriami Rodent Control
## 399 Dipodomys merriami Rodent Control
## 400 Dipodomys merriami Rodent Control
## 401 Dipodomys merriami Rodent Control
## 402 Dipodomys merriami Rodent Control
## 403 Dipodomys merriami Rodent Control
## 404 Dipodomys merriami Rodent Control
## 405 Dipodomys merriami Rodent Control
## 406 Dipodomys merriami Rodent Control
## 407 Dipodomys merriami Rodent Control
## 408 Dipodomys merriami Rodent Control
## 409 Dipodomys merriami Rodent Control
## 410 Dipodomys merriami Rodent Control
## 411 Dipodomys merriami Rodent Control
## 412 Dipodomys merriami Rodent Control
## 413 Dipodomys merriami Rodent Control
## 414 Dipodomys merriami Rodent Control
## 415 Dipodomys merriami Rodent Control
## 416 Dipodomys merriami Rodent Control
## 417 Dipodomys merriami Rodent Control
## 418 Dipodomys merriami Rodent Control
## 419 Dipodomys merriami Rodent Control
## 420 Dipodomys merriami Rodent Control
## 421 Dipodomys merriami Rodent Control
## 422 Dipodomys merriami Rodent Control
## 423 Dipodomys merriami Rodent Control
## 424 Dipodomys merriami Rodent Control
## 425 Dipodomys merriami Rodent Control
## 426 Dipodomys merriami Rodent Control
## 427 Dipodomys merriami Rodent Control
## 428 Dipodomys merriami Rodent Control
## 429 Dipodomys merriami Rodent Control
## 430 Dipodomys merriami Rodent Control
## 431 Dipodomys merriami Rodent Control
## 432 Dipodomys merriami Rodent Control
## 433 Dipodomys merriami Rodent Control
## 434 Dipodomys merriami Rodent Control
## 435 Dipodomys merriami Rodent Control
## 436 Dipodomys merriami Rodent Control
## 437 Dipodomys merriami Rodent Control
## 438 Dipodomys merriami Rodent Control
## 439 Dipodomys merriami Rodent Control
## 440 Dipodomys merriami Rodent Control
## 441 Dipodomys merriami Rodent Control
## 442 Dipodomys merriami Rodent Control
## 443 Dipodomys merriami Rodent Control
## 444 Dipodomys merriami Rodent Control
## 445 Dipodomys merriami Rodent Control
## 446 Dipodomys merriami Rodent Control
## 447 Dipodomys merriami Rodent Control
## 448 Dipodomys merriami Rodent Control
## 449 Dipodomys merriami Rodent Control
## 450 Dipodomys merriami Rodent Control
## 451 Dipodomys merriami Rodent Control
## 452 Dipodomys merriami Rodent Control
## 453 Dipodomys merriami Rodent Control
## 454 Dipodomys merriami Rodent Control
## 455 Dipodomys merriami Rodent Control
## 456 Dipodomys merriami Rodent Control
## 457 Dipodomys merriami Rodent Control
## 458 Dipodomys merriami Rodent Control
## 459 Dipodomys merriami Rodent Control
## 460 Dipodomys merriami Rodent Control
## 461 Dipodomys merriami Rodent Control
## 462 Dipodomys merriami Rodent Control
## 463 Dipodomys merriami Rodent Control
## 464 Dipodomys merriami Rodent Control
## 465 Dipodomys merriami Rodent Control
## 466 Dipodomys merriami Rodent Control
## 467 Dipodomys merriami Rodent Control
## 468 Dipodomys merriami Rodent Control
## 469 Dipodomys merriami Rodent Control
## 470 Dipodomys merriami Rodent Control
## 471 Dipodomys merriami Rodent Control
## 472 Dipodomys merriami Rodent Control
## 473 Dipodomys merriami Rodent Control
## 474 Dipodomys merriami Rodent Control
## 475 Dipodomys merriami Rodent Control
## 476 Dipodomys merriami Rodent Control
## 477 Dipodomys merriami Rodent Control
## 478 Dipodomys merriami Rodent Control
## 479 Dipodomys merriami Rodent Control
## 480 Dipodomys merriami Rodent Control
## 481 Dipodomys merriami Rodent Control
## 482 Dipodomys merriami Rodent Control
## 483 Dipodomys merriami Rodent Control
## 484 Dipodomys merriami Rodent Control
## 485 Dipodomys merriami Rodent Control
## 486 Dipodomys merriami Rodent Control
## 487 Dipodomys merriami Rodent Control
## 488 Dipodomys merriami Rodent Control
## 489 Dipodomys merriami Rodent Control
## 490 Dipodomys merriami Rodent Control
## 491 Dipodomys merriami Rodent Control
## 492 Dipodomys merriami Rodent Control
## 493 Dipodomys merriami Rodent Control
## 494 Dipodomys merriami Rodent Control
## 495 Dipodomys merriami Rodent Control
## 496 Dipodomys merriami Rodent Control
## 497 Dipodomys merriami Rodent Control
## 498 Dipodomys merriami Rodent Control
## 499 Dipodomys merriami Rodent Control
## 500 Dipodomys merriami Rodent Control
## 501 Dipodomys merriami Rodent Control
## 502 Dipodomys merriami Rodent Control
## 503 Dipodomys merriami Rodent Control
## 504 Dipodomys merriami Rodent Control
## 505 Dipodomys merriami Rodent Control
## 506 Dipodomys merriami Rodent Control
## 507 Dipodomys merriami Rodent Control
## 508 Dipodomys merriami Rodent Control
## 509 Dipodomys merriami Rodent Control
## 510 Dipodomys merriami Rodent Control
## 511 Dipodomys merriami Rodent Control
## 512 Dipodomys merriami Rodent Control
## 513 Dipodomys merriami Rodent Control
## 514 Dipodomys merriami Rodent Control
## 515 Dipodomys merriami Rodent Control
## 516 Dipodomys merriami Rodent Control
## 517 Dipodomys merriami Rodent Control
## 518 Dipodomys merriami Rodent Control
## 519 Dipodomys merriami Rodent Control
## 520 Dipodomys merriami Rodent Control
## 521 Dipodomys merriami Rodent Control
## 522 Dipodomys merriami Rodent Control
## 523 Dipodomys merriami Rodent Control
## 524 Dipodomys merriami Rodent Control
## 525 Dipodomys merriami Rodent Control
## 526 Dipodomys merriami Rodent Control
## 527 Dipodomys merriami Rodent Control
## 528 Dipodomys merriami Rodent Control
## 529 Dipodomys merriami Rodent Control
## 530 Dipodomys merriami Rodent Control
## 531 Dipodomys merriami Rodent Control
## 532 Dipodomys merriami Rodent Control
## 533 Dipodomys merriami Rodent Control
## 534 Dipodomys merriami Rodent Control
## 535 Dipodomys merriami Rodent Control
## 536 Dipodomys merriami Rodent Control
## 537 Dipodomys merriami Rodent Control
## 538 Dipodomys merriami Rodent Control
## 539 Dipodomys merriami Rodent Control
## 540 Dipodomys merriami Rodent Control
## 541 Dipodomys merriami Rodent Control
## 542 Dipodomys merriami Rodent Control
## 543 Dipodomys merriami Rodent Control
## 544 Dipodomys merriami Rodent Control
## 545 Dipodomys merriami Rodent Control
## 546 Dipodomys merriami Rodent Control
## 547 Dipodomys merriami Rodent Control
## 548 Dipodomys merriami Rodent Control
## 549 Dipodomys merriami Rodent Control
## 550 Dipodomys merriami Rodent Control
## 551 Dipodomys merriami Rodent Control
## 552 Dipodomys merriami Rodent Control
## 553 Dipodomys merriami Rodent Control
## 554 Dipodomys merriami Rodent Control
## 555 Dipodomys merriami Rodent Control
## 556 Dipodomys merriami Rodent Control
## 557 Dipodomys merriami Rodent Control
## 558 Dipodomys merriami Rodent Control
## 559 Dipodomys merriami Rodent Control
## 560 Dipodomys merriami Rodent Control
## 561 Dipodomys merriami Rodent Control
## 562 Dipodomys merriami Rodent Control
## 563 Dipodomys merriami Rodent Control
## 564 Dipodomys merriami Rodent Control
## 565 Dipodomys merriami Rodent Control
## 566 Dipodomys merriami Rodent Control
## 567 Dipodomys merriami Rodent Control
## 568 Dipodomys merriami Rodent Control
## 569 Dipodomys merriami Rodent Control
## 570 Dipodomys merriami Rodent Control
## 571 Dipodomys merriami Rodent Control
## 572 Dipodomys merriami Rodent Control
## 573 Dipodomys merriami Rodent Control
## 574 Dipodomys merriami Rodent Control
## 575 Dipodomys merriami Rodent Control
## 576 Dipodomys merriami Rodent Control
## 577 Dipodomys merriami Rodent Control
## 578 Dipodomys merriami Rodent Control
## 579 Dipodomys merriami Rodent Control
## 580 Dipodomys merriami Rodent Control
## 581 Dipodomys merriami Rodent Control
## 582 Dipodomys merriami Rodent Control
## 583 Dipodomys merriami Rodent Control
## 584 Dipodomys merriami Rodent Control
## 585 Dipodomys merriami Rodent Control
## 586 Dipodomys merriami Rodent Control
## 587 Dipodomys merriami Rodent Control
## 588 Dipodomys merriami Rodent Control
## 589 Dipodomys merriami Rodent Control
## 590 Dipodomys merriami Rodent Control
## 591 Dipodomys merriami Rodent Control
## 592 Dipodomys merriami Rodent Control
## 593 Dipodomys merriami Rodent Control
## 594 Dipodomys merriami Rodent Control
## 595 Dipodomys merriami Rodent Control
## 596 Dipodomys merriami Rodent Control
## 597 Dipodomys merriami Rodent Control
## 598 Dipodomys merriami Rodent Control
## 599 Dipodomys merriami Rodent Control
## 600 Dipodomys merriami Rodent Control
## 601 Dipodomys merriami Rodent Control
## 602 Dipodomys merriami Rodent Control
## 603 Dipodomys merriami Rodent Control
## 604 Dipodomys merriami Rodent Control
## 605 Dipodomys merriami Rodent Control
## 606 Dipodomys merriami Rodent Control
## 607 Dipodomys merriami Rodent Control
## 608 Dipodomys merriami Rodent Control
## 609 Dipodomys merriami Rodent Control
## 610 Dipodomys merriami Rodent Control
## 611 Dipodomys merriami Rodent Control
## 612 Dipodomys merriami Rodent Control
## 613 Dipodomys merriami Rodent Control
## 614 Dipodomys merriami Rodent Control
## 615 Dipodomys merriami Rodent Control
## 616 Dipodomys merriami Rodent Control
## 617 Dipodomys merriami Rodent Control
## 618 Dipodomys merriami Rodent Control
## 619 Dipodomys merriami Rodent Control
## 620 Dipodomys merriami Rodent Control
## 621 Dipodomys merriami Rodent Control
## 622 Dipodomys merriami Rodent Control
## 623 Dipodomys merriami Rodent Control
## 624 Dipodomys merriami Rodent Control
## 625 Dipodomys merriami Rodent Control
## 626 Dipodomys merriami Rodent Control
## 627 Dipodomys merriami Rodent Control
## 628 Dipodomys merriami Rodent Control
## 629 Dipodomys merriami Rodent Control
## 630 Dipodomys merriami Rodent Control
## 631 Dipodomys merriami Rodent Control
## 632 Dipodomys merriami Rodent Control
## 633 Dipodomys merriami Rodent Control
## 634 Dipodomys merriami Rodent Control
## 635 Dipodomys merriami Rodent Control
## 636 Dipodomys merriami Rodent Control
## 637 Dipodomys merriami Rodent Control
## 638 Dipodomys merriami Rodent Control
## 639 Dipodomys merriami Rodent Control
## 640 Dipodomys merriami Rodent Control
## 641 Dipodomys merriami Rodent Control
## 642 Dipodomys merriami Rodent Control
## 643 Dipodomys merriami Rodent Control
## 644 Dipodomys merriami Rodent Control
## 645 Dipodomys merriami Rodent Control
## 646 Dipodomys merriami Rodent Control
## 647 Dipodomys merriami Rodent Control
## 648 Dipodomys merriami Rodent Control
## 649 Dipodomys merriami Rodent Control
## 650 Dipodomys merriami Rodent Control
## 651 Dipodomys merriami Rodent Control
## 652 Dipodomys merriami Rodent Control
## 653 Dipodomys merriami Rodent Control
## 654 Dipodomys merriami Rodent Control
## 655 Dipodomys merriami Rodent Control
## 656 Dipodomys merriami Rodent Control
## 657 Dipodomys merriami Rodent Control
## 658 Dipodomys merriami Rodent Control
## 659 Dipodomys merriami Rodent Control
## 660 Dipodomys merriami Rodent Control
## 661 Dipodomys merriami Rodent Control
## 662 Dipodomys merriami Rodent Control
## 663 Dipodomys merriami Rodent Control
## 664 Dipodomys merriami Rodent Control
## 665 Dipodomys merriami Rodent Control
## 666 Dipodomys merriami Rodent Control
## 667 Dipodomys merriami Rodent Control
## 668 Dipodomys merriami Rodent Control
## 669 Dipodomys merriami Rodent Control
## 670 Dipodomys merriami Rodent Control
## 671 Dipodomys merriami Rodent Control
## 672 Dipodomys merriami Rodent Control
## 673 Dipodomys merriami Rodent Control
## 674 Dipodomys merriami Rodent Control
## 675 Dipodomys merriami Rodent Control
## 676 Dipodomys merriami Rodent Control
## 677 Dipodomys merriami Rodent Control
## 678 Dipodomys merriami Rodent Control
## 679 Dipodomys merriami Rodent Control
## 680 Dipodomys merriami Rodent Control
## 681 Dipodomys merriami Rodent Control
## 682 Dipodomys merriami Rodent Control
## 683 Dipodomys merriami Rodent Control
## 684 Dipodomys merriami Rodent Control
## 685 Dipodomys merriami Rodent Control
## 686 Dipodomys merriami Rodent Control
## 687 Dipodomys merriami Rodent Control
## 688 Dipodomys merriami Rodent Control
## 689 Dipodomys merriami Rodent Control
## 690 Dipodomys merriami Rodent Control
## 691 Dipodomys merriami Rodent Control
## 692 Dipodomys merriami Rodent Control
## 693 Dipodomys merriami Rodent Control
## 694 Dipodomys merriami Rodent Control
## 695 Dipodomys merriami Rodent Control
## 696 Dipodomys merriami Rodent Control
## 697 Dipodomys merriami Rodent Control
## 698 Dipodomys merriami Rodent Control
## 699 Dipodomys merriami Rodent Control
## 700 Dipodomys merriami Rodent Control
## 701 Dipodomys merriami Rodent Control
## 702 Dipodomys merriami Rodent Control
## 703 Dipodomys merriami Rodent Control
## 704 Dipodomys merriami Rodent Control
## 705 Dipodomys merriami Rodent Control
## 706 Dipodomys merriami Rodent Control
## 707 Dipodomys merriami Rodent Control
## 708 Dipodomys merriami Rodent Control
## 709 Dipodomys merriami Rodent Control
## 710 Dipodomys merriami Rodent Control
## 711 Dipodomys merriami Rodent Control
## 712 Dipodomys merriami Rodent Control
## 713 Dipodomys merriami Rodent Control
## 714 Dipodomys merriami Rodent Control
## 715 Dipodomys merriami Rodent Control
## 716 Dipodomys merriami Rodent Control
## 717 Dipodomys merriami Rodent Control
## 718 Dipodomys merriami Rodent Control
## 719 Dipodomys merriami Rodent Control
## 720 Dipodomys merriami Rodent Control
## 721 Dipodomys merriami Rodent Control
## 722 Dipodomys merriami Rodent Control
## 723 Dipodomys merriami Rodent Control
## 724 Dipodomys merriami Rodent Control
## 725 Dipodomys merriami Rodent Control
## 726 Dipodomys merriami Rodent Control
## 727 Dipodomys merriami Rodent Control
## 728 Dipodomys merriami Rodent Control
## 729 Dipodomys merriami Rodent Control
## 730 Dipodomys merriami Rodent Control
## 731 Dipodomys merriami Rodent Control
## 732 Dipodomys merriami Rodent Control
## 733 Dipodomys merriami Rodent Control
## 734 Dipodomys merriami Rodent Control
## 735 Dipodomys merriami Rodent Control
## 736 Dipodomys merriami Rodent Control
## 737 Dipodomys merriami Rodent Control
## 738 Dipodomys merriami Rodent Control
## 739 Dipodomys merriami Rodent Control
## 740 Dipodomys merriami Rodent Control
## 741 Dipodomys merriami Rodent Control
## 742 Dipodomys merriami Rodent Control
## 743 Dipodomys merriami Rodent Control
## 744 Dipodomys merriami Rodent Control
## 745 Dipodomys merriami Rodent Control
## 746 Dipodomys merriami Rodent Control
## 747 Dipodomys merriami Rodent Control
## 748 Dipodomys merriami Rodent Control
## 749 Dipodomys merriami Rodent Control
## 750 Dipodomys merriami Rodent Control
## 751 Dipodomys merriami Rodent Control
## 752 Dipodomys merriami Rodent Control
## 753 Dipodomys merriami Rodent Control
## 754 Dipodomys merriami Rodent Control
## 755 Dipodomys merriami Rodent Control
## 756 Dipodomys merriami Rodent Control
## 757 Dipodomys merriami Rodent Control
## 758 Dipodomys merriami Rodent Control
## 759 Dipodomys merriami Rodent Control
## 760 Dipodomys merriami Rodent Control
## 761 Dipodomys merriami Rodent Control
## 762 Dipodomys merriami Rodent Control
## 763 Dipodomys merriami Rodent Control
## 764 Dipodomys merriami Rodent Control
## 765 Dipodomys merriami Rodent Control
## 766 Dipodomys merriami Rodent Control
## 767 Dipodomys merriami Rodent Control
## 768 Dipodomys merriami Rodent Control
## 769 Dipodomys merriami Rodent Control
## 770 Dipodomys merriami Rodent Control
## 771 Dipodomys merriami Rodent Control
## 772 Dipodomys merriami Rodent Control
## 773 Dipodomys merriami Rodent Control
## 774 Dipodomys merriami Rodent Control
## 775 Dipodomys merriami Rodent Control
## 776 Dipodomys merriami Rodent Control
## 777 Dipodomys merriami Rodent Control
## 778 Dipodomys merriami Rodent Control
## 779 Dipodomys merriami Rodent Control
## 780 Perognathus flavus Rodent Control
## 781 Perognathus flavus Rodent Control
## 782 Perognathus flavus Rodent Control
## 783 Perognathus flavus Rodent Control
## 784 Perognathus flavus Rodent Control
## 785 Perognathus flavus Rodent Control
## 786 Perognathus flavus Rodent Control
## 787 Perognathus flavus Rodent Control
## 788 Perognathus flavus Rodent Control
## 789 Perognathus flavus Rodent Control
## 790 Perognathus flavus Rodent Control
## 791 Perognathus flavus Rodent Control
## 792 Perognathus flavus Rodent Control
## 793 Perognathus flavus Rodent Control
## 794 Perognathus flavus Rodent Control
## 795 Perognathus flavus Rodent Control
## 796 Perognathus flavus Rodent Control
## 797 Perognathus flavus Rodent Control
## 798 Perognathus flavus Rodent Control
## 799 Perognathus flavus Rodent Control
## 800 Perognathus flavus Rodent Control
## 801 Peromyscus eremicus Rodent Control
## 802 Peromyscus eremicus Rodent Control
## 803 Peromyscus eremicus Rodent Control
## 804 Peromyscus eremicus Rodent Control
## 805 Peromyscus eremicus Rodent Control
## 806 Peromyscus eremicus Rodent Control
## 807 Peromyscus eremicus Rodent Control
## 808 Peromyscus eremicus Rodent Control
## 809 Peromyscus eremicus Rodent Control
## 810 Peromyscus eremicus Rodent Control
## 811 Peromyscus eremicus Rodent Control
## 812 Peromyscus eremicus Rodent Control
## 813 Peromyscus eremicus Rodent Control
## 814 Peromyscus eremicus Rodent Control
## 815 Peromyscus eremicus Rodent Control
## 816 Peromyscus eremicus Rodent Control
## 817 Peromyscus eremicus Rodent Control
## 818 Peromyscus eremicus Rodent Control
## 819 Peromyscus eremicus Rodent Control
## 820 Peromyscus eremicus Rodent Control
## 821 Peromyscus eremicus Rodent Control
## 822 Peromyscus eremicus Rodent Control
## 823 Peromyscus eremicus Rodent Control
## 824 Peromyscus eremicus Rodent Control
## 825 Peromyscus eremicus Rodent Control
## 826 Peromyscus eremicus Rodent Control
## 827 Peromyscus eremicus Rodent Control
## 828 Peromyscus eremicus Rodent Control
## 829 Peromyscus eremicus Rodent Control
## 830 Peromyscus eremicus Rodent Control
## 831 Peromyscus eremicus Rodent Control
## 832 Peromyscus eremicus Rodent Control
## 833 Peromyscus eremicus Rodent Control
## 834 Peromyscus eremicus Rodent Control
## 835 Peromyscus eremicus Rodent Control
## 836 Peromyscus eremicus Rodent Control
## 837 Peromyscus eremicus Rodent Control
## 838 Peromyscus eremicus Rodent Control
## 839 Peromyscus eremicus Rodent Control
## 840 Peromyscus eremicus Rodent Control
## 841 Peromyscus eremicus Rodent Control
## 842 Peromyscus eremicus Rodent Control
## 843 Peromyscus eremicus Rodent Control
## 844 Peromyscus eremicus Rodent Control
## 845 Peromyscus eremicus Rodent Control
## 846 Peromyscus eremicus Rodent Control
## 847 Peromyscus eremicus Rodent Control
## 848 Peromyscus eremicus Rodent Control
## 849 Peromyscus eremicus Rodent Control
## 850 Peromyscus eremicus Rodent Control
## 851 Peromyscus eremicus Rodent Control
## 852 Peromyscus eremicus Rodent Control
## 853 Peromyscus eremicus Rodent Control
## 854 Peromyscus eremicus Rodent Control
## 855 Peromyscus eremicus Rodent Control
## 856 Peromyscus eremicus Rodent Control
## 857 Peromyscus eremicus Rodent Control
## 858 Peromyscus eremicus Rodent Control
## 859 Peromyscus eremicus Rodent Control
## 860 Peromyscus eremicus Rodent Control
## 861 Peromyscus eremicus Rodent Control
## 862 Peromyscus eremicus Rodent Control
## 863 Peromyscus eremicus Rodent Control
## 864 Peromyscus eremicus Rodent Control
## 865 Peromyscus eremicus Rodent Control
## 866 Peromyscus eremicus Rodent Control
## 867 Peromyscus eremicus Rodent Control
## 868 Peromyscus eremicus Rodent Control
## 869 Peromyscus eremicus Rodent Control
## 870 Peromyscus eremicus Rodent Control
## 871 Peromyscus eremicus Rodent Control
## 872 Peromyscus eremicus Rodent Control
## 873 Peromyscus eremicus Rodent Control
## 874 Peromyscus eremicus Rodent Control
## 875 Peromyscus eremicus Rodent Control
## 876 Peromyscus eremicus Rodent Control
## 877 Peromyscus eremicus Rodent Control
## 878 Peromyscus eremicus Rodent Control
## 879 Peromyscus eremicus Rodent Control
## 880 Peromyscus eremicus Rodent Control
## 881 Peromyscus eremicus Rodent Control
## 882 Peromyscus eremicus Rodent Control
## 883 Peromyscus eremicus Rodent Control
## 884 Peromyscus eremicus Rodent Control
## 885 Peromyscus eremicus Rodent Control
## 886 Peromyscus eremicus Rodent Control
## 887 Peromyscus eremicus Rodent Control
## 888 Peromyscus eremicus Rodent Control
## 889 Peromyscus eremicus Rodent Control
## 890 Peromyscus eremicus Rodent Control
## 891 Peromyscus eremicus Rodent Control
## 892 Peromyscus eremicus Rodent Control
## 893 Peromyscus eremicus Rodent Control
## 894 Peromyscus eremicus Rodent Control
## 895 Peromyscus eremicus Rodent Control
## 896 Peromyscus eremicus Rodent Control
## 897 Peromyscus eremicus Rodent Control
## 898 Peromyscus eremicus Rodent Control
## 899 Peromyscus eremicus Rodent Control
## 900 Peromyscus eremicus Rodent Control
## 901 Peromyscus eremicus Rodent Control
## 902 Peromyscus eremicus Rodent Control
## 903 Peromyscus eremicus Rodent Control
## 904 Peromyscus eremicus Rodent Control
## 905 Peromyscus eremicus Rodent Control
## 906 Peromyscus eremicus Rodent Control
## 907 Peromyscus eremicus Rodent Control
## 908 Peromyscus eremicus Rodent Control
## 909 Peromyscus eremicus Rodent Control
## 910 Peromyscus eremicus Rodent Control
## 911 Peromyscus eremicus Rodent Control
## 912 Peromyscus eremicus Rodent Control
## 913 Peromyscus eremicus Rodent Control
## 914 Peromyscus eremicus Rodent Control
## 915 Peromyscus eremicus Rodent Control
## 916 Peromyscus eremicus Rodent Control
## 917 Peromyscus eremicus Rodent Control
## 918 Peromyscus eremicus Rodent Control
## 919 Peromyscus eremicus Rodent Control
## 920 Peromyscus eremicus Rodent Control
## 921 Peromyscus eremicus Rodent Control
## 922 Peromyscus eremicus Rodent Control
## 923 Peromyscus eremicus Rodent Control
## 924 Peromyscus eremicus Rodent Control
## 925 Peromyscus eremicus Rodent Control
## 926 Peromyscus eremicus Rodent Control
## 927 Peromyscus eremicus Rodent Control
## 928 Peromyscus eremicus Rodent Control
## 929 Peromyscus eremicus Rodent Control
## 930 Peromyscus eremicus Rodent Control
## 931 Peromyscus eremicus Rodent Control
## 932 Peromyscus eremicus Rodent Control
## 933 Peromyscus eremicus Rodent Control
## 934 Peromyscus eremicus Rodent Control
## 935 Peromyscus eremicus Rodent Control
## 936 Peromyscus eremicus Rodent Control
## 937 Peromyscus eremicus Rodent Control
## 938 Peromyscus eremicus Rodent Control
## 939 Peromyscus eremicus Rodent Control
## 940 Peromyscus eremicus Rodent Control
## 941 Peromyscus eremicus Rodent Control
## 942 Peromyscus eremicus Rodent Control
## 943 Peromyscus eremicus Rodent Control
## 944 Peromyscus eremicus Rodent Control
## 945 Peromyscus eremicus Rodent Control
## 946 Peromyscus eremicus Rodent Control
## 947 Dipodomys spectabilis Rodent Control
## 948 Dipodomys spectabilis Rodent Control
## 949 Dipodomys spectabilis Rodent Control
## 950 Dipodomys spectabilis Rodent Control
## 951 Dipodomys spectabilis Rodent Control
## 952 Dipodomys spectabilis Rodent Control
## 953 Dipodomys spectabilis Rodent Control
## 954 Dipodomys spectabilis Rodent Control
## 955 Dipodomys spectabilis Rodent Control
## 956 Dipodomys spectabilis Rodent Control
## 957 Dipodomys spectabilis Rodent Control
## 958 Dipodomys spectabilis Rodent Control
## 959 Dipodomys spectabilis Rodent Control
## 960 Dipodomys spectabilis Rodent Control
## 961 Dipodomys spectabilis Rodent Control
## 962 Dipodomys spectabilis Rodent Control
## 963 Dipodomys spectabilis Rodent Control
## 964 Dipodomys spectabilis Rodent Control
## 965 Dipodomys spectabilis Rodent Control
## 966 Dipodomys spectabilis Rodent Control
## 967 Dipodomys spectabilis Rodent Control
## 968 Dipodomys spectabilis Rodent Control
## 969 Dipodomys spectabilis Rodent Control
## 970 Dipodomys spectabilis Rodent Control
## 971 Dipodomys spectabilis Rodent Control
## 972 Dipodomys spectabilis Rodent Control
## 973 Dipodomys spectabilis Rodent Control
## 974 Dipodomys spectabilis Rodent Control
## 975 Dipodomys spectabilis Rodent Control
## 976 Dipodomys spectabilis Rodent Control
## 977 Dipodomys spectabilis Rodent Control
## 978 Dipodomys spectabilis Rodent Control
## 979 Dipodomys spectabilis Rodent Control
## 980 Dipodomys spectabilis Rodent Control
## 981 Dipodomys spectabilis Rodent Control
## 982 Dipodomys spectabilis Rodent Control
## 983 Dipodomys spectabilis Rodent Control
## 984 Dipodomys spectabilis Rodent Control
## 985 Dipodomys spectabilis Rodent Control
## 986 Dipodomys spectabilis Rodent Control
## 987 Dipodomys spectabilis Rodent Control
## 988 Dipodomys spectabilis Rodent Control
## 989 Dipodomys spectabilis Rodent Control
## 990 Dipodomys spectabilis Rodent Control
## 991 Dipodomys spectabilis Rodent Control
## 992 Dipodomys spectabilis Rodent Control
## 993 Dipodomys spectabilis Rodent Control
## 994 Dipodomys spectabilis Rodent Control
## 995 Dipodomys spectabilis Rodent Control
## 996 Dipodomys spectabilis Rodent Control
## 997 Dipodomys spectabilis Rodent Control
## 998 Dipodomys spectabilis Rodent Control
## 999 Dipodomys spectabilis Rodent Control
## 1000 Dipodomys spectabilis Rodent Control
## 1001 Dipodomys spectabilis Rodent Control
## 1002 Dipodomys spectabilis Rodent Control
## 1003 Dipodomys spectabilis Rodent Control
## 1004 Dipodomys spectabilis Rodent Control
## 1005 Dipodomys spectabilis Rodent Control
## 1006 Dipodomys spectabilis Rodent Control
## 1007 Dipodomys spectabilis Rodent Control
## 1008 Dipodomys spectabilis Rodent Control
## 1009 Dipodomys spectabilis Rodent Control
## 1010 Dipodomys spectabilis Rodent Control
## 1011 Dipodomys spectabilis Rodent Control
## 1012 Dipodomys spectabilis Rodent Control
## 1013 Dipodomys spectabilis Rodent Control
## 1014 Dipodomys spectabilis Rodent Control
## 1015 Dipodomys spectabilis Rodent Control
## 1016 Dipodomys spectabilis Rodent Control
## 1017 Dipodomys spectabilis Rodent Control
## 1018 Dipodomys spectabilis Rodent Control
## 1019 Dipodomys spectabilis Rodent Control
## 1020 Dipodomys spectabilis Rodent Control
## 1021 Dipodomys spectabilis Rodent Control
## 1022 Dipodomys spectabilis Rodent Control
## 1023 Dipodomys spectabilis Rodent Control
## 1024 Dipodomys spectabilis Rodent Control
## 1025 Dipodomys spectabilis Rodent Control
## 1026 Dipodomys spectabilis Rodent Control
## 1027 Dipodomys spectabilis Rodent Control
## 1028 Dipodomys spectabilis Rodent Control
## 1029 Dipodomys spectabilis Rodent Control
## 1030 Dipodomys spectabilis Rodent Control
## 1031 Dipodomys spectabilis Rodent Control
## 1032 Dipodomys spectabilis Rodent Control
## 1033 Dipodomys spectabilis Rodent Control
## 1034 Dipodomys spectabilis Rodent Control
## 1035 Dipodomys spectabilis Rodent Control
## 1036 Dipodomys spectabilis Rodent Control
## 1037 Dipodomys spectabilis Rodent Control
## 1038 Dipodomys spectabilis Rodent Control
## 1039 Dipodomys spectabilis Rodent Control
## 1040 Dipodomys spectabilis Rodent Control
## 1041 Dipodomys spectabilis Rodent Control
## 1042 Dipodomys spectabilis Rodent Control
## 1043 Dipodomys spectabilis Rodent Control
## 1044 Dipodomys spectabilis Rodent Control
## 1045 Dipodomys spectabilis Rodent Control
## 1046 Dipodomys spectabilis Rodent Control
## 1047 Dipodomys spectabilis Rodent Control
## 1048 Dipodomys spectabilis Rodent Control
## 1049 Dipodomys spectabilis Rodent Control
## 1050 Dipodomys spectabilis Rodent Control
## 1051 Dipodomys spectabilis Rodent Control
## 1052 Dipodomys spectabilis Rodent Control
## 1053 Dipodomys spectabilis Rodent Control
## 1054 Dipodomys spectabilis Rodent Control
## 1055 Dipodomys spectabilis Rodent Control
## 1056 Dipodomys spectabilis Rodent Control
## 1057 Dipodomys spectabilis Rodent Control
## 1058 Dipodomys spectabilis Rodent Control
## 1059 Dipodomys spectabilis Rodent Control
## 1060 Dipodomys spectabilis Rodent Control
## 1061 Dipodomys spectabilis Rodent Control
## 1062 Dipodomys spectabilis Rodent Control
## 1063 Dipodomys spectabilis Rodent Control
## 1064 Dipodomys spectabilis Rodent Control
## 1065 Dipodomys spectabilis Rodent Control
## 1066 Dipodomys spectabilis Rodent Control
## 1067 Dipodomys spectabilis Rodent Control
## 1068 Dipodomys spectabilis Rodent Control
## 1069 Dipodomys spectabilis Rodent Control
## 1070 Dipodomys spectabilis Rodent Control
## 1071 Dipodomys spectabilis Rodent Control
## 1072 Dipodomys spectabilis Rodent Control
## 1073 Dipodomys spectabilis Rodent Control
## 1074 Dipodomys spectabilis Rodent Control
## 1075 Dipodomys spectabilis Rodent Control
## 1076 Dipodomys spectabilis Rodent Control
## 1077 Dipodomys spectabilis Rodent Control
## 1078 Dipodomys spectabilis Rodent Control
## 1079 Dipodomys spectabilis Rodent Control
## 1080 Dipodomys spectabilis Rodent Control
## 1081 Dipodomys spectabilis Rodent Control
## 1082 Dipodomys spectabilis Rodent Control
## 1083 Dipodomys spectabilis Rodent Control
## 1084 Chaetodipus penicillatus Rodent Control
## 1085 Chaetodipus penicillatus Rodent Control
## 1086 Chaetodipus penicillatus Rodent Control
## 1087 Chaetodipus penicillatus Rodent Control
## 1088 Chaetodipus penicillatus Rodent Control
## 1089 Chaetodipus penicillatus Rodent Control
## 1090 Chaetodipus penicillatus Rodent Control
## 1091 Chaetodipus penicillatus Rodent Control
## 1092 Chaetodipus penicillatus Rodent Control
## 1093 Chaetodipus penicillatus Rodent Control
## 1094 Chaetodipus penicillatus Rodent Control
## 1095 Chaetodipus penicillatus Rodent Control
## 1096 Chaetodipus penicillatus Rodent Control
## 1097 Chaetodipus penicillatus Rodent Control
## 1098 Chaetodipus penicillatus Rodent Control
## 1099 Chaetodipus penicillatus Rodent Control
## 1100 Chaetodipus penicillatus Rodent Control
## 1101 Chaetodipus penicillatus Rodent Control
## 1102 Chaetodipus penicillatus Rodent Control
## 1103 Chaetodipus penicillatus Rodent Control
## 1104 Chaetodipus penicillatus Rodent Control
## 1105 Chaetodipus penicillatus Rodent Control
## 1106 Chaetodipus penicillatus Rodent Control
## 1107 Chaetodipus penicillatus Rodent Control
## 1108 Chaetodipus penicillatus Rodent Control
## 1109 Chaetodipus penicillatus Rodent Control
## 1110 Chaetodipus penicillatus Rodent Control
## 1111 Chaetodipus penicillatus Rodent Control
## 1112 Chaetodipus penicillatus Rodent Control
## 1113 Chaetodipus penicillatus Rodent Control
## 1114 Chaetodipus penicillatus Rodent Control
## 1115 Chaetodipus penicillatus Rodent Control
## 1116 Chaetodipus penicillatus Rodent Control
## 1117 Chaetodipus penicillatus Rodent Control
## 1118 Chaetodipus penicillatus Rodent Control
## 1119 Chaetodipus penicillatus Rodent Control
## 1120 Chaetodipus penicillatus Rodent Control
## 1121 Chaetodipus penicillatus Rodent Control
## 1122 Chaetodipus penicillatus Rodent Control
## 1123 Chaetodipus penicillatus Rodent Control
## 1124 Chaetodipus penicillatus Rodent Control
## 1125 Chaetodipus penicillatus Rodent Control
## 1126 Chaetodipus penicillatus Rodent Control
## 1127 Chaetodipus penicillatus Rodent Control
## 1128 Chaetodipus penicillatus Rodent Control
## 1129 Chaetodipus penicillatus Rodent Control
## 1130 Chaetodipus penicillatus Rodent Control
## 1131 Chaetodipus penicillatus Rodent Control
## 1132 Chaetodipus penicillatus Rodent Control
## 1133 Chaetodipus penicillatus Rodent Control
## 1134 Chaetodipus penicillatus Rodent Control
## 1135 Chaetodipus penicillatus Rodent Control
## 1136 Chaetodipus penicillatus Rodent Control
## 1137 Chaetodipus penicillatus Rodent Control
## 1138 Chaetodipus penicillatus Rodent Control
## 1139 Chaetodipus penicillatus Rodent Control
## 1140 Chaetodipus penicillatus Rodent Control
## 1141 Chaetodipus penicillatus Rodent Control
## 1142 Chaetodipus penicillatus Rodent Control
## 1143 Chaetodipus penicillatus Rodent Control
## 1144 Chaetodipus penicillatus Rodent Control
## 1145 Chaetodipus penicillatus Rodent Control
## 1146 Chaetodipus penicillatus Rodent Control
## 1147 Chaetodipus penicillatus Rodent Control
## 1148 Chaetodipus penicillatus Rodent Control
## 1149 Chaetodipus penicillatus Rodent Control
## 1150 Chaetodipus penicillatus Rodent Control
## 1151 Chaetodipus penicillatus Rodent Control
## 1152 Chaetodipus penicillatus Rodent Control
## 1153 Chaetodipus penicillatus Rodent Control
## 1154 Chaetodipus penicillatus Rodent Control
## 1155 Chaetodipus penicillatus Rodent Control
## 1156 Chaetodipus penicillatus Rodent Control
## 1157 Chaetodipus penicillatus Rodent Control
## 1158 Chaetodipus penicillatus Rodent Control
## 1159 Chaetodipus penicillatus Rodent Control
## 1160 Chaetodipus penicillatus Rodent Control
## 1161 Chaetodipus penicillatus Rodent Control
## 1162 Chaetodipus penicillatus Rodent Control
## 1163 Chaetodipus penicillatus Rodent Control
## 1164 Chaetodipus penicillatus Rodent Control
## 1165 Chaetodipus penicillatus Rodent Control
## 1166 Chaetodipus penicillatus Rodent Control
## 1167 Chaetodipus penicillatus Rodent Control
## 1168 Chaetodipus penicillatus Rodent Control
## 1169 Chaetodipus penicillatus Rodent Control
## 1170 Chaetodipus penicillatus Rodent Control
## 1171 Chaetodipus penicillatus Rodent Control
## 1172 Chaetodipus penicillatus Rodent Control
## 1173 Chaetodipus penicillatus Rodent Control
## 1174 Chaetodipus penicillatus Rodent Control
## 1175 Chaetodipus penicillatus Rodent Control
## 1176 Chaetodipus penicillatus Rodent Control
## 1177 Chaetodipus penicillatus Rodent Control
## 1178 Chaetodipus penicillatus Rodent Control
## 1179 Chaetodipus penicillatus Rodent Control
## 1180 Chaetodipus penicillatus Rodent Control
## 1181 Chaetodipus penicillatus Rodent Control
## 1182 Chaetodipus penicillatus Rodent Control
## 1183 Chaetodipus penicillatus Rodent Control
## 1184 Chaetodipus penicillatus Rodent Control
## 1185 Chaetodipus penicillatus Rodent Control
## 1186 Chaetodipus penicillatus Rodent Control
## 1187 Chaetodipus penicillatus Rodent Control
## 1188 Chaetodipus penicillatus Rodent Control
## 1189 Chaetodipus penicillatus Rodent Control
## 1190 Chaetodipus penicillatus Rodent Control
## 1191 Chaetodipus penicillatus Rodent Control
## 1192 Chaetodipus penicillatus Rodent Control
## 1193 Chaetodipus penicillatus Rodent Control
## 1194 Chaetodipus penicillatus Rodent Control
## 1195 Chaetodipus penicillatus Rodent Control
## 1196 Chaetodipus penicillatus Rodent Control
## 1197 Chaetodipus penicillatus Rodent Control
## 1198 Chaetodipus penicillatus Rodent Control
## 1199 Chaetodipus penicillatus Rodent Control
## 1200 Chaetodipus penicillatus Rodent Control
## 1201 Chaetodipus penicillatus Rodent Control
## 1202 Chaetodipus penicillatus Rodent Control
## 1203 Chaetodipus penicillatus Rodent Control
## 1204 Chaetodipus penicillatus Rodent Control
## 1205 Chaetodipus penicillatus Rodent Control
## 1206 Chaetodipus penicillatus Rodent Control
## 1207 Chaetodipus penicillatus Rodent Control
## 1208 Chaetodipus penicillatus Rodent Control
## 1209 Chaetodipus penicillatus Rodent Control
## 1210 Chaetodipus penicillatus Rodent Control
## 1211 Chaetodipus penicillatus Rodent Control
## 1212 Chaetodipus penicillatus Rodent Control
## 1213 Chaetodipus penicillatus Rodent Control
## 1214 Chaetodipus penicillatus Rodent Control
## 1215 Chaetodipus penicillatus Rodent Control
## 1216 Chaetodipus penicillatus Rodent Control
## 1217 Chaetodipus penicillatus Rodent Control
## 1218 Chaetodipus penicillatus Rodent Control
## 1219 Chaetodipus penicillatus Rodent Control
## 1220 Chaetodipus penicillatus Rodent Control
## 1221 Chaetodipus penicillatus Rodent Control
## 1222 Chaetodipus penicillatus Rodent Control
## 1223 Chaetodipus penicillatus Rodent Control
## 1224 Chaetodipus penicillatus Rodent Control
## 1225 Chaetodipus penicillatus Rodent Control
## 1226 Chaetodipus penicillatus Rodent Control
## 1227 Chaetodipus penicillatus Rodent Control
## 1228 Chaetodipus penicillatus Rodent Control
## 1229 Chaetodipus penicillatus Rodent Control
## 1230 Chaetodipus penicillatus Rodent Control
## 1231 Chaetodipus penicillatus Rodent Control
## 1232 Chaetodipus penicillatus Rodent Control
## 1233 Chaetodipus penicillatus Rodent Control
## 1234 Chaetodipus penicillatus Rodent Control
## 1235 Chaetodipus penicillatus Rodent Control
## 1236 Chaetodipus penicillatus Rodent Control
## 1237 Chaetodipus penicillatus Rodent Control
## 1238 Chaetodipus penicillatus Rodent Control
## 1239 Chaetodipus penicillatus Rodent Control
## 1240 Chaetodipus penicillatus Rodent Control
## 1241 Chaetodipus penicillatus Rodent Control
## 1242 Chaetodipus penicillatus Rodent Control
## 1243 Chaetodipus penicillatus Rodent Control
## 1244 Chaetodipus penicillatus Rodent Control
## 1245 Chaetodipus penicillatus Rodent Control
## 1246 Chaetodipus penicillatus Rodent Control
## 1247 Chaetodipus penicillatus Rodent Control
## 1248 Chaetodipus penicillatus Rodent Control
## 1249 Chaetodipus penicillatus Rodent Control
## 1250 Chaetodipus penicillatus Rodent Control
## 1251 Chaetodipus penicillatus Rodent Control
## 1252 Chaetodipus penicillatus Rodent Control
## 1253 Chaetodipus penicillatus Rodent Control
## 1254 Chaetodipus penicillatus Rodent Control
## 1255 Chaetodipus penicillatus Rodent Control
## 1256 Chaetodipus penicillatus Rodent Control
## 1257 Chaetodipus penicillatus Rodent Control
## 1258 Chaetodipus penicillatus Rodent Control
## 1259 Chaetodipus penicillatus Rodent Control
## 1260 Chaetodipus penicillatus Rodent Control
## 1261 Chaetodipus penicillatus Rodent Control
## 1262 Chaetodipus penicillatus Rodent Control
## 1263 Chaetodipus penicillatus Rodent Control
## 1264 Chaetodipus penicillatus Rodent Control
## 1265 Chaetodipus penicillatus Rodent Control
## 1266 Chaetodipus penicillatus Rodent Control
## 1267 Chaetodipus penicillatus Rodent Control
## 1268 Chaetodipus penicillatus Rodent Control
## 1269 Chaetodipus penicillatus Rodent Control
## 1270 Chaetodipus penicillatus Rodent Control
## 1271 Sigmodon hispidus Rodent Control
## 1272 Sigmodon hispidus Rodent Control
## 1273 Sigmodon hispidus Rodent Control
## 1274 Sigmodon hispidus Rodent Control
## 1275 Sigmodon hispidus Rodent Control
## 1276 Sigmodon hispidus Rodent Control
## 1277 Sigmodon hispidus Rodent Control
## 1278 Sigmodon hispidus Rodent Control
## 1279 Sigmodon hispidus Rodent Control
## 1280 Sigmodon hispidus Rodent Control
## 1281 Sigmodon hispidus Rodent Control
## 1282 Sigmodon hispidus Rodent Control
## 1283 Sigmodon hispidus Rodent Control
## 1284 Sigmodon hispidus Rodent Control
## 1285 Sigmodon hispidus Rodent Control
## 1286 Onychomys torridus Rodent Control
## 1287 Onychomys torridus Rodent Control
## 1288 Onychomys torridus Rodent Control
## 1289 Onychomys torridus Rodent Control
## 1290 Onychomys torridus Rodent Control
## 1291 Onychomys torridus Rodent Control
## 1292 Onychomys torridus Rodent Control
## 1293 Onychomys torridus Rodent Control
## 1294 Onychomys torridus Rodent Control
## 1295 Onychomys torridus Rodent Control
## 1296 Onychomys torridus Rodent Control
## 1297 Onychomys torridus Rodent Control
## 1298 Onychomys torridus Rodent Control
## 1299 Onychomys torridus Rodent Control
## 1300 Onychomys torridus Rodent Control
## 1301 Onychomys torridus Rodent Control
## 1302 Onychomys torridus Rodent Control
## 1303 Onychomys torridus Rodent Control
## 1304 Onychomys torridus Rodent Control
## 1305 Onychomys torridus Rodent Control
## 1306 Onychomys torridus Rodent Control
## 1307 Onychomys torridus Rodent Control
## 1308 Onychomys torridus Rodent Control
## 1309 Onychomys torridus Rodent Control
## 1310 Onychomys torridus Rodent Control
## 1311 Onychomys torridus Rodent Control
## 1312 Onychomys torridus Rodent Control
## 1313 Onychomys torridus Rodent Control
## 1314 Onychomys torridus Rodent Control
## 1315 Onychomys torridus Rodent Control
## 1316 Onychomys torridus Rodent Control
## 1317 Onychomys torridus Rodent Control
## 1318 Onychomys torridus Rodent Control
## 1319 Onychomys torridus Rodent Control
## 1320 Onychomys torridus Rodent Control
## 1321 Onychomys torridus Rodent Control
## 1322 Onychomys torridus Rodent Control
## 1323 Onychomys torridus Rodent Control
## 1324 Onychomys torridus Rodent Control
## 1325 Onychomys torridus Rodent Control
## 1326 Onychomys torridus Rodent Control
## 1327 Onychomys torridus Rodent Control
## 1328 Onychomys torridus Rodent Control
## 1329 Onychomys torridus Rodent Control
## 1330 Onychomys torridus Rodent Control
## 1331 Onychomys torridus Rodent Control
## 1332 Onychomys torridus Rodent Control
## 1333 Onychomys torridus Rodent Control
## 1334 Onychomys torridus Rodent Control
## 1335 Onychomys torridus Rodent Control
## 1336 Onychomys torridus Rodent Control
## 1337 Onychomys torridus Rodent Control
## 1338 Onychomys torridus Rodent Control
## 1339 Onychomys torridus Rodent Control
## 1340 Onychomys torridus Rodent Control
## 1341 Onychomys torridus Rodent Control
## 1342 Onychomys torridus Rodent Control
## 1343 Onychomys torridus Rodent Control
## 1344 Onychomys torridus Rodent Control
## 1345 Onychomys torridus Rodent Control
## 1346 Onychomys torridus Rodent Control
## 1347 Onychomys torridus Rodent Control
## 1348 Onychomys torridus Rodent Control
## 1349 Onychomys torridus Rodent Control
## 1350 Onychomys torridus Rodent Control
## 1351 Onychomys torridus Rodent Control
## 1352 Onychomys torridus Rodent Control
## 1353 Onychomys torridus Rodent Control
## 1354 Onychomys torridus Rodent Control
## 1355 Onychomys torridus Rodent Control
## 1356 Onychomys torridus Rodent Control
## 1357 Onychomys torridus Rodent Control
## 1358 Onychomys torridus Rodent Control
## 1359 Onychomys torridus Rodent Control
## 1360 Onychomys torridus Rodent Control
## 1361 Onychomys torridus Rodent Control
## 1362 Onychomys torridus Rodent Control
## 1363 Onychomys torridus Rodent Control
## 1364 Onychomys torridus Rodent Control
## 1365 Onychomys torridus Rodent Control
## 1366 Onychomys torridus Rodent Control
## 1367 Onychomys torridus Rodent Control
## 1368 Onychomys torridus Rodent Control
## 1369 Onychomys torridus Rodent Control
## 1370 Onychomys torridus Rodent Control
## 1371 Onychomys torridus Rodent Control
## 1372 Onychomys torridus Rodent Control
## 1373 Onychomys torridus Rodent Control
## 1374 Onychomys torridus Rodent Control
## 1375 Onychomys torridus Rodent Control
## 1376 Onychomys torridus Rodent Control
## 1377 Onychomys torridus Rodent Control
## 1378 Onychomys torridus Rodent Control
## 1379 Onychomys torridus Rodent Control
## 1380 Onychomys torridus Rodent Control
## 1381 Onychomys torridus Rodent Control
## 1382 Onychomys torridus Rodent Control
## 1383 Onychomys torridus Rodent Control
## 1384 Onychomys torridus Rodent Control
## 1385 Onychomys torridus Rodent Control
## 1386 Onychomys torridus Rodent Control
## 1387 Onychomys torridus Rodent Control
## 1388 Onychomys torridus Rodent Control
## 1389 Onychomys torridus Rodent Control
## 1390 Onychomys torridus Rodent Control
## 1391 Onychomys torridus Rodent Control
## 1392 Onychomys torridus Rodent Control
## 1393 Onychomys torridus Rodent Control
## 1394 Onychomys torridus Rodent Control
## 1395 Onychomys torridus Rodent Control
## 1396 Onychomys torridus Rodent Control
## 1397 Onychomys torridus Rodent Control
## 1398 Onychomys torridus Rodent Control
## 1399 Onychomys torridus Rodent Control
## 1400 Onychomys torridus Rodent Control
## 1401 Onychomys torridus Rodent Control
## 1402 Onychomys torridus Rodent Control
## 1403 Onychomys torridus Rodent Control
## 1404 Onychomys torridus Rodent Control
## 1405 Onychomys torridus Rodent Control
## 1406 Onychomys torridus Rodent Control
## 1407 Onychomys torridus Rodent Control
## 1408 Onychomys torridus Rodent Control
## 1409 Onychomys torridus Rodent Control
## 1410 Onychomys torridus Rodent Control
## 1411 Onychomys torridus Rodent Control
## 1412 Onychomys torridus Rodent Control
## 1413 Onychomys torridus Rodent Control
## 1414 Onychomys torridus Rodent Control
## 1415 Onychomys torridus Rodent Control
## 1416 Onychomys torridus Rodent Control
## 1417 Onychomys torridus Rodent Control
## 1418 Onychomys torridus Rodent Control
## 1419 Onychomys torridus Rodent Control
## 1420 Onychomys torridus Rodent Control
## 1421 Onychomys torridus Rodent Control
## 1422 Onychomys torridus Rodent Control
## 1423 Onychomys torridus Rodent Control
## 1424 Onychomys torridus Rodent Control
## 1425 Onychomys torridus Rodent Control
## 1426 Onychomys torridus Rodent Control
## 1427 Onychomys torridus Rodent Control
## 1428 Onychomys torridus Rodent Control
## 1429 Onychomys torridus Rodent Control
## 1430 Onychomys torridus Rodent Control
## 1431 Onychomys torridus Rodent Control
## 1432 Onychomys torridus Rodent Control
## 1433 Onychomys torridus Rodent Control
## 1434 Onychomys torridus Rodent Control
## 1435 Onychomys torridus Rodent Control
## 1436 Onychomys torridus Rodent Control
## 1437 Onychomys torridus Rodent Control
## 1438 Onychomys torridus Rodent Control
## 1439 Onychomys torridus Rodent Control
## 1440 Onychomys torridus Rodent Control
## 1441 Onychomys torridus Rodent Control
## 1442 Onychomys torridus Rodent Control
## 1443 Onychomys torridus Rodent Control
## 1444 Onychomys torridus Rodent Control
## 1445 Onychomys torridus Rodent Control
## 1446 Onychomys torridus Rodent Control
## 1447 Onychomys torridus Rodent Control
## 1448 Onychomys torridus Rodent Control
## 1449 Onychomys torridus Rodent Control
## 1450 Onychomys torridus Rodent Control
## 1451 Onychomys torridus Rodent Control
## 1452 Onychomys torridus Rodent Control
## 1453 Onychomys torridus Rodent Control
## 1454 Onychomys torridus Rodent Control
## 1455 Onychomys torridus Rodent Control
## 1456 Onychomys torridus Rodent Control
## 1457 Onychomys torridus Rodent Control
## 1458 Onychomys torridus Rodent Control
## 1459 Onychomys torridus Rodent Control
## 1460 Onychomys torridus Rodent Control
## 1461 Onychomys torridus Rodent Control
## 1462 Onychomys torridus Rodent Control
## 1463 Onychomys torridus Rodent Control
## 1464 Onychomys torridus Rodent Control
## 1465 Onychomys torridus Rodent Control
## 1466 Onychomys torridus Rodent Control
## 1467 Onychomys torridus Rodent Control
## 1468 Onychomys torridus Rodent Control
## 1469 Onychomys torridus Rodent Control
## 1470 Onychomys torridus Rodent Control
## 1471 Onychomys torridus Rodent Control
## 1472 Onychomys torridus Rodent Control
## 1473 Onychomys torridus Rodent Control
## 1474 Onychomys torridus Rodent Control
## 1475 Onychomys torridus Rodent Control
## 1476 Onychomys torridus Rodent Control
## 1477 Onychomys torridus Rodent Control
## 1478 Onychomys torridus Rodent Control
## 1479 Onychomys torridus Rodent Control
## 1480 Dipodomys ordii Rodent Control
## 1481 Dipodomys ordii Rodent Control
## 1482 Dipodomys ordii Rodent Control
## 1483 Dipodomys ordii Rodent Control
## 1484 Dipodomys ordii Rodent Control
## 1485 Dipodomys ordii Rodent Control
## 1486 Dipodomys ordii Rodent Control
## 1487 Dipodomys ordii Rodent Control
## 1488 Dipodomys ordii Rodent Control
## 1489 Dipodomys ordii Rodent Control
## 1490 Dipodomys ordii Rodent Control
## 1491 Dipodomys ordii Rodent Control
## 1492 Dipodomys ordii Rodent Control
## 1493 Dipodomys ordii Rodent Control
## 1494 Dipodomys ordii Rodent Control
## 1495 Dipodomys ordii Rodent Control
## 1496 Dipodomys ordii Rodent Control
## 1497 Dipodomys ordii Rodent Control
## 1498 Dipodomys ordii Rodent Control
## 1499 Dipodomys ordii Rodent Control
## 1500 Dipodomys ordii Rodent Control
## 1501 Dipodomys ordii Rodent Control
## 1502 Dipodomys ordii Rodent Control
## 1503 Dipodomys ordii Rodent Control
## 1504 Dipodomys ordii Rodent Control
## 1505 Dipodomys ordii Rodent Control
## 1506 Dipodomys ordii Rodent Control
## 1507 Dipodomys ordii Rodent Control
## 1508 Dipodomys ordii Rodent Control
## 1509 Dipodomys ordii Rodent Control
## 1510 Dipodomys ordii Rodent Control
## 1511 Dipodomys ordii Rodent Control
## 1512 Dipodomys ordii Rodent Control
## 1513 Dipodomys ordii Rodent Control
## 1514 Dipodomys ordii Rodent Control
## 1515 Dipodomys ordii Rodent Control
## 1516 Dipodomys ordii Rodent Control
## 1517 Dipodomys ordii Rodent Control
## 1518 Dipodomys ordii Rodent Control
## 1519 Dipodomys ordii Rodent Control
## 1520 Dipodomys ordii Rodent Control
## 1521 Dipodomys ordii Rodent Control
## 1522 Dipodomys ordii Rodent Control
## 1523 Dipodomys ordii Rodent Control
## 1524 Dipodomys ordii Rodent Control
## 1525 Dipodomys ordii Rodent Control
## 1526 Dipodomys ordii Rodent Control
## 1527 Dipodomys ordii Rodent Control
## 1528 Dipodomys ordii Rodent Control
## 1529 Dipodomys ordii Rodent Control
## 1530 Dipodomys ordii Rodent Control
## 1531 Dipodomys ordii Rodent Control
## 1532 Dipodomys ordii Rodent Control
## 1533 Dipodomys ordii Rodent Control
## 1534 Dipodomys ordii Rodent Control
## 1535 Dipodomys ordii Rodent Control
## 1536 Dipodomys ordii Rodent Control
## 1537 Dipodomys ordii Rodent Control
## 1538 Dipodomys ordii Rodent Control
## 1539 Dipodomys ordii Rodent Control
## 1540 Dipodomys ordii Rodent Control
## 1541 Dipodomys ordii Rodent Control
## 1542 Dipodomys ordii Rodent Control
## 1543 Dipodomys ordii Rodent Control
## 1544 Dipodomys ordii Rodent Control
## 1545 Dipodomys ordii Rodent Control
## 1546 Dipodomys ordii Rodent Control
## 1547 Dipodomys ordii Rodent Control
## 1548 Dipodomys ordii Rodent Control
## 1549 Dipodomys ordii Rodent Control
## 1550 Dipodomys ordii Rodent Control
## 1551 Dipodomys ordii Rodent Control
## 1552 Dipodomys ordii Rodent Control
## 1553 Dipodomys ordii Rodent Control
## 1554 Dipodomys ordii Rodent Control
## 1555 Dipodomys ordii Rodent Control
## 1556 Dipodomys ordii Rodent Control
## 1557 Dipodomys ordii Rodent Control
## 1558 Dipodomys ordii Rodent Control
## 1559 Dipodomys ordii Rodent Control
## 1560 Dipodomys ordii Rodent Control
## 1561 Dipodomys ordii Rodent Control
## 1562 Dipodomys ordii Rodent Control
## 1563 Dipodomys ordii Rodent Control
## 1564 Dipodomys ordii Rodent Control
## 1565 Dipodomys ordii Rodent Control
## 1566 Dipodomys ordii Rodent Control
## 1567 Dipodomys ordii Rodent Control
## 1568 Dipodomys ordii Rodent Control
## 1569 Dipodomys ordii Rodent Control
## 1570 Dipodomys ordii Rodent Control
## 1571 Dipodomys ordii Rodent Control
## 1572 Dipodomys ordii Rodent Control
## 1573 Dipodomys ordii Rodent Control
## 1574 Dipodomys ordii Rodent Control
## 1575 Dipodomys ordii Rodent Control
## 1576 Dipodomys ordii Rodent Control
## 1577 Dipodomys ordii Rodent Control
## 1578 Dipodomys ordii Rodent Control
## 1579 Dipodomys ordii Rodent Control
## 1580 Dipodomys ordii Rodent Control
## 1581 Dipodomys ordii Rodent Control
## 1582 Dipodomys ordii Rodent Control
## 1583 Dipodomys ordii Rodent Control
## 1584 Dipodomys ordii Rodent Control
## 1585 Dipodomys ordii Rodent Control
## 1586 Dipodomys ordii Rodent Control
## 1587 Dipodomys ordii Rodent Control
## 1588 Dipodomys ordii Rodent Control
## 1589 Dipodomys ordii Rodent Control
## 1590 Dipodomys ordii Rodent Control
## 1591 Dipodomys ordii Rodent Control
## 1592 Dipodomys ordii Rodent Control
## 1593 Dipodomys ordii Rodent Control
## 1594 Dipodomys ordii Rodent Control
## 1595 Dipodomys ordii Rodent Control
## 1596 Dipodomys ordii Rodent Control
## 1597 Dipodomys ordii Rodent Control
## 1598 Dipodomys ordii Rodent Control
## 1599 Dipodomys ordii Rodent Control
## 1600 Dipodomys ordii Rodent Control
## 1601 Dipodomys ordii Rodent Control
## 1602 Dipodomys ordii Rodent Control
## 1603 Dipodomys ordii Rodent Control
## 1604 Dipodomys ordii Rodent Control
## 1605 Dipodomys ordii Rodent Control
## 1606 Dipodomys ordii Rodent Control
## 1607 Dipodomys ordii Rodent Control
## 1608 Dipodomys ordii Rodent Control
## 1609 Dipodomys ordii Rodent Control
## 1610 Dipodomys ordii Rodent Control
## 1611 Dipodomys ordii Rodent Control
## 1612 Dipodomys ordii Rodent Control
## 1613 Dipodomys ordii Rodent Control
## 1614 Dipodomys ordii Rodent Control
## 1615 Dipodomys ordii Rodent Control
## 1616 Dipodomys ordii Rodent Control
## 1617 Dipodomys ordii Rodent Control
## 1618 Dipodomys ordii Rodent Control
## 1619 Dipodomys ordii Rodent Control
## 1620 Dipodomys ordii Rodent Control
## 1621 Dipodomys ordii Rodent Control
## 1622 Dipodomys ordii Rodent Control
## 1623 Dipodomys ordii Rodent Control
## 1624 Dipodomys ordii Rodent Control
## 1625 Dipodomys ordii Rodent Control
## 1626 Dipodomys ordii Rodent Control
## 1627 Dipodomys ordii Rodent Control
## 1628 Dipodomys ordii Rodent Control
## 1629 Dipodomys ordii Rodent Control
## 1630 Dipodomys ordii Rodent Control
## 1631 Dipodomys ordii Rodent Control
## 1632 Dipodomys ordii Rodent Control
## 1633 Dipodomys ordii Rodent Control
## 1634 Dipodomys ordii Rodent Control
## 1635 Dipodomys ordii Rodent Control
## 1636 Dipodomys ordii Rodent Control
## 1637 Dipodomys ordii Rodent Control
## 1638 Dipodomys ordii Rodent Control
## 1639 Dipodomys ordii Rodent Control
## 1640 Dipodomys ordii Rodent Control
## 1641 Dipodomys ordii Rodent Control
## 1642 Dipodomys ordii Rodent Control
## 1643 Dipodomys ordii Rodent Control
## 1644 Dipodomys ordii Rodent Control
## 1645 Dipodomys ordii Rodent Control
## 1646 Dipodomys ordii Rodent Control
## 1647 Dipodomys ordii Rodent Control
## 1648 Dipodomys ordii Rodent Control
## 1649 Dipodomys ordii Rodent Control
## 1650 Dipodomys ordii Rodent Control
## 1651 Dipodomys ordii Rodent Control
## 1652 Dipodomys ordii Rodent Control
## 1653 Dipodomys ordii Rodent Control
## 1654 Dipodomys ordii Rodent Control
## 1655 Dipodomys ordii Rodent Control
## 1656 Dipodomys ordii Rodent Control
## 1657 Dipodomys ordii Rodent Control
## 1658 Dipodomys ordii Rodent Control
## 1659 Dipodomys ordii Rodent Control
## 1660 Dipodomys ordii Rodent Control
## 1661 Dipodomys ordii Rodent Control
## 1662 Dipodomys ordii Rodent Control
## 1663 Dipodomys ordii Rodent Control
## 1664 Dipodomys ordii Rodent Control
## 1665 Dipodomys ordii Rodent Control
## 1666 Dipodomys ordii Rodent Control
## 1667 Dipodomys ordii Rodent Control
## 1668 Dipodomys ordii Rodent Control
## 1669 Dipodomys ordii Rodent Control
## 1670 Dipodomys ordii Rodent Control
## 1671 Dipodomys ordii Rodent Control
## 1672 Dipodomys ordii Rodent Control
## 1673 Dipodomys ordii Rodent Control
## 1674 Dipodomys ordii Rodent Control
## 1675 Dipodomys ordii Rodent Control
## 1676 Dipodomys ordii Rodent Control
## 1677 Dipodomys ordii Rodent Control
## 1678 Dipodomys ordii Rodent Control
## 1679 Dipodomys ordii Rodent Control
## 1680 Dipodomys ordii Rodent Control
## 1681 Dipodomys ordii Rodent Control
## 1682 Dipodomys ordii Rodent Control
## 1683 Dipodomys ordii Rodent Control
## 1684 Dipodomys ordii Rodent Control
## 1685 Dipodomys ordii Rodent Control
## 1686 Dipodomys ordii Rodent Control
## 1687 Dipodomys ordii Rodent Control
## 1688 Dipodomys ordii Rodent Control
## 1689 Dipodomys ordii Rodent Control
## 1690 Dipodomys ordii Rodent Control
## 1691 Dipodomys ordii Rodent Control
## 1692 Dipodomys ordii Rodent Control
## 1693 Dipodomys ordii Rodent Control
## 1694 Dipodomys ordii Rodent Control
## 1695 Dipodomys ordii Rodent Control
## 1696 Dipodomys ordii Rodent Control
## 1697 Dipodomys ordii Rodent Control
## 1698 Dipodomys ordii Rodent Control
## 1699 Dipodomys ordii Rodent Control
## 1700 Dipodomys ordii Rodent Control
## 1701 Dipodomys ordii Rodent Control
## 1702 Dipodomys ordii Rodent Control
## 1703 Dipodomys ordii Rodent Control
## 1704 Dipodomys ordii Rodent Control
## 1705 Dipodomys ordii Rodent Control
## 1706 Dipodomys ordii Rodent Control
## 1707 Dipodomys ordii Rodent Control
## 1708 Dipodomys ordii Rodent Control
## 1709 Dipodomys ordii Rodent Control
## 1710 Dipodomys ordii Rodent Control
## 1711 Dipodomys ordii Rodent Control
## 1712 Dipodomys ordii Rodent Control
## 1713 Dipodomys ordii Rodent Control
## 1714 Dipodomys ordii Rodent Control
## 1715 Dipodomys ordii Rodent Control
## 1716 Dipodomys ordii Rodent Control
## 1717 Dipodomys ordii Rodent Control
## 1718 Dipodomys ordii Rodent Control
## 1719 Dipodomys ordii Rodent Control
## 1720 Dipodomys ordii Rodent Control
## 1721 Dipodomys ordii Rodent Control
## 1722 Dipodomys ordii Rodent Control
## 1723 Dipodomys ordii Rodent Control
## 1724 Dipodomys ordii Rodent Control
## 1725 Dipodomys ordii Rodent Control
## 1726 Dipodomys ordii Rodent Control
## 1727 Dipodomys ordii Rodent Control
## 1728 Dipodomys ordii Rodent Control
## 1729 Dipodomys ordii Rodent Control
## 1730 Dipodomys ordii Rodent Control
## 1731 Dipodomys ordii Rodent Control
## 1732 Dipodomys ordii Rodent Control
## 1733 Dipodomys ordii Rodent Control
## 1734 Dipodomys ordii Rodent Control
## 1735 Dipodomys ordii Rodent Control
## 1736 Dipodomys ordii Rodent Control
## 1737 Dipodomys ordii Rodent Control
## 1738 Dipodomys ordii Rodent Control
## 1739 Dipodomys ordii Rodent Control
## 1740 Dipodomys ordii Rodent Control
## 1741 Dipodomys ordii Rodent Control
## 1742 Dipodomys ordii Rodent Control
## 1743 Dipodomys ordii Rodent Control
## 1744 Dipodomys ordii Rodent Control
## 1745 Dipodomys ordii Rodent Control
## 1746 Dipodomys ordii Rodent Control
## 1747 Dipodomys ordii Rodent Control
## 1748 Dipodomys ordii Rodent Control
## 1749 Dipodomys ordii Rodent Control
## 1750 Dipodomys ordii Rodent Control
## 1751 Dipodomys ordii Rodent Control
## 1752 Dipodomys ordii Rodent Control
## 1753 Dipodomys ordii Rodent Control
## 1754 Dipodomys ordii Rodent Control
## 1755 Dipodomys ordii Rodent Control
## 1756 Dipodomys ordii Rodent Control
## 1757 Dipodomys ordii Rodent Control
## 1758 Dipodomys ordii Rodent Control
## 1759 Dipodomys ordii Rodent Control
## 1760 Dipodomys ordii Rodent Control
## 1761 Dipodomys ordii Rodent Control
## 1762 Dipodomys ordii Rodent Control
## 1763 Dipodomys ordii Rodent Control
## 1764 Dipodomys ordii Rodent Control
## 1765 Dipodomys ordii Rodent Control
## 1766 Dipodomys ordii Rodent Control
## 1767 Dipodomys ordii Rodent Control
## 1768 Dipodomys ordii Rodent Control
## 1769 Dipodomys ordii Rodent Control
## 1770 Dipodomys ordii Rodent Control
## 1771 Dipodomys ordii Rodent Control
## 1772 Dipodomys ordii Rodent Control
## 1773 Dipodomys ordii Rodent Control
## 1774 Dipodomys ordii Rodent Control
## 1775 Dipodomys ordii Rodent Control
## 1776 Dipodomys ordii Rodent Control
## 1777 Dipodomys ordii Rodent Control
## 1778 Dipodomys ordii Rodent Control
## 1779 Dipodomys ordii Rodent Control
## 1780 Dipodomys ordii Rodent Control
## 1781 Dipodomys ordii Rodent Control
## 1782 Dipodomys ordii Rodent Control
## 1783 Dipodomys ordii Rodent Control
## 1784 Dipodomys ordii Rodent Control
## 1785 Dipodomys ordii Rodent Control
## 1786 Dipodomys ordii Rodent Control
## 1787 Dipodomys ordii Rodent Control
## 1788 Dipodomys ordii Rodent Control
## 1789 Dipodomys ordii Rodent Control
## 1790 Dipodomys ordii Rodent Control
## 1791 Dipodomys ordii Rodent Control
## 1792 Dipodomys ordii Rodent Control
## 1793 Onychomys sp. Rodent Control
## 1794 Onychomys sp. Rodent Control
## 1795 Spermophilus spilosoma Rodent Control
## 1796 Spermophilus spilosoma Rodent Control
## 1797 Spermophilus spilosoma Rodent Control
## 1798 Spermophilus spilosoma Rodent Control
## 1799 Spermophilus spilosoma Rodent Control
## 1800 Spermophilus spilosoma Rodent Control
## 1801 Spermophilus spilosoma Rodent Control
## 1802 Onychomys leucogaster Rodent Control
## 1803 Onychomys leucogaster Rodent Control
## 1804 Onychomys leucogaster Rodent Control
## 1805 Onychomys leucogaster Rodent Control
## 1806 Onychomys leucogaster Rodent Control
## 1807 Onychomys leucogaster Rodent Control
## 1808 Onychomys leucogaster Rodent Control
## 1809 Onychomys leucogaster Rodent Control
## 1810 Onychomys leucogaster Rodent Control
## 1811 Onychomys leucogaster Rodent Control
## 1812 Onychomys leucogaster Rodent Control
## 1813 Onychomys leucogaster Rodent Control
## 1814 Onychomys leucogaster Rodent Control
## 1815 Onychomys leucogaster Rodent Control
## 1816 Onychomys leucogaster Rodent Control
## 1817 Onychomys leucogaster Rodent Control
## 1818 Onychomys leucogaster Rodent Control
## 1819 Onychomys leucogaster Rodent Control
## 1820 Onychomys leucogaster Rodent Control
## 1821 Onychomys leucogaster Rodent Control
## 1822 Onychomys leucogaster Rodent Control
## 1823 Onychomys leucogaster Rodent Control
## 1824 Onychomys leucogaster Rodent Control
## 1825 Onychomys leucogaster Rodent Control
## 1826 Onychomys leucogaster Rodent Control
## 1827 Onychomys leucogaster Rodent Control
## 1828 Onychomys leucogaster Rodent Control
## 1829 Onychomys leucogaster Rodent Control
## 1830 Onychomys leucogaster Rodent Control
## 1831 Onychomys leucogaster Rodent Control
## 1832 Onychomys leucogaster Rodent Control
## 1833 Onychomys leucogaster Rodent Control
## 1834 Onychomys leucogaster Rodent Control
## 1835 Onychomys leucogaster Rodent Control
## 1836 Onychomys leucogaster Rodent Control
## 1837 Onychomys leucogaster Rodent Control
## 1838 Onychomys leucogaster Rodent Control
## 1839 Onychomys leucogaster Rodent Control
## 1840 Onychomys leucogaster Rodent Control
## 1841 Onychomys leucogaster Rodent Control
## 1842 Onychomys leucogaster Rodent Control
## 1843 Onychomys leucogaster Rodent Control
## 1844 Onychomys leucogaster Rodent Control
## 1845 Onychomys leucogaster Rodent Control
## 1846 Onychomys leucogaster Rodent Control
## 1847 Onychomys leucogaster Rodent Control
## 1848 Onychomys leucogaster Rodent Control
## 1849 Onychomys leucogaster Rodent Control
## 1850 Onychomys leucogaster Rodent Control
## 1851 Onychomys leucogaster Rodent Control
## 1852 Onychomys leucogaster Rodent Control
## 1853 Onychomys leucogaster Rodent Control
## 1854 Onychomys leucogaster Rodent Control
## 1855 Onychomys leucogaster Rodent Control
## 1856 Onychomys leucogaster Rodent Control
## 1857 Onychomys leucogaster Rodent Control
## 1858 Onychomys leucogaster Rodent Control
## 1859 Onychomys leucogaster Rodent Control
## 1860 Onychomys leucogaster Rodent Control
## 1861 Onychomys leucogaster Rodent Control
## 1862 Onychomys leucogaster Rodent Control
## 1863 Onychomys leucogaster Rodent Control
## 1864 Onychomys leucogaster Rodent Control
## 1865 Onychomys leucogaster Rodent Control
## 1866 Onychomys leucogaster Rodent Control
## 1867 Onychomys leucogaster Rodent Control
## 1868 Onychomys leucogaster Rodent Control
## 1869 Onychomys leucogaster Rodent Control
## 1870 Reithrodontomys megalotis Rodent Control
## 1871 Reithrodontomys megalotis Rodent Control
## 1872 Reithrodontomys megalotis Rodent Control
## 1873 Reithrodontomys megalotis Rodent Control
## 1874 Reithrodontomys megalotis Rodent Control
## 1875 Reithrodontomys megalotis Rodent Control
## 1876 Reithrodontomys megalotis Rodent Control
## 1877 Reithrodontomys megalotis Rodent Control
## 1878 Reithrodontomys megalotis Rodent Control
## 1879 Reithrodontomys megalotis Rodent Control
## 1880 Reithrodontomys megalotis Rodent Control
## 1881 Reithrodontomys megalotis Rodent Control
## 1882 Reithrodontomys megalotis Rodent Control
## 1883 Reithrodontomys megalotis Rodent Control
## 1884 Reithrodontomys megalotis Rodent Control
## 1885 Reithrodontomys megalotis Rodent Control
## 1886 Reithrodontomys megalotis Rodent Control
## 1887 Reithrodontomys megalotis Rodent Control
## 1888 Reithrodontomys megalotis Rodent Control
## 1889 Reithrodontomys megalotis Rodent Control
## 1890 Reithrodontomys megalotis Rodent Control
## 1891 Reithrodontomys megalotis Rodent Control
## 1892 Reithrodontomys megalotis Rodent Control
## 1893 Reithrodontomys megalotis Rodent Control
## 1894 Reithrodontomys megalotis Rodent Control
## 1895 Reithrodontomys megalotis Rodent Control
## 1896 Reithrodontomys megalotis Rodent Control
## 1897 Reithrodontomys megalotis Rodent Control
## 1898 Reithrodontomys megalotis Rodent Control
## 1899 Reithrodontomys megalotis Rodent Control
## 1900 Reithrodontomys megalotis Rodent Control
## 1901 Reithrodontomys megalotis Rodent Control
## 1902 Reithrodontomys megalotis Rodent Control
## 1903 Reithrodontomys megalotis Rodent Control
## 1904 Reithrodontomys megalotis Rodent Control
## 1905 Reithrodontomys megalotis Rodent Control
## 1906 Reithrodontomys megalotis Rodent Control
## 1907 Reithrodontomys megalotis Rodent Control
## 1908 Reithrodontomys megalotis Rodent Control
## 1909 Reithrodontomys megalotis Rodent Control
## 1910 Reithrodontomys megalotis Rodent Control
## 1911 Reithrodontomys megalotis Rodent Control
## 1912 Reithrodontomys megalotis Rodent Control
## 1913 Reithrodontomys megalotis Rodent Control
## 1914 Reithrodontomys megalotis Rodent Control
## 1915 Reithrodontomys megalotis Rodent Control
## 1916 Reithrodontomys megalotis Rodent Control
## 1917 Reithrodontomys megalotis Rodent Control
## 1918 Reithrodontomys megalotis Rodent Control
## 1919 Reithrodontomys megalotis Rodent Control
## 1920 Reithrodontomys megalotis Rodent Control
## 1921 Reithrodontomys megalotis Rodent Control
## 1922 Reithrodontomys megalotis Rodent Control
## 1923 Reithrodontomys megalotis Rodent Control
## 1924 Reithrodontomys megalotis Rodent Control
## 1925 Reithrodontomys megalotis Rodent Control
## 1926 Reithrodontomys megalotis Rodent Control
## 1927 Reithrodontomys megalotis Rodent Control
## 1928 Reithrodontomys megalotis Rodent Control
## 1929 Reithrodontomys megalotis Rodent Control
## 1930 Reithrodontomys megalotis Rodent Control
## 1931 Reithrodontomys megalotis Rodent Control
## 1932 Reithrodontomys megalotis Rodent Control
## 1933 Reithrodontomys megalotis Rodent Control
## 1934 Reithrodontomys megalotis Rodent Control
## 1935 Reithrodontomys megalotis Rodent Control
## 1936 Reithrodontomys megalotis Rodent Control
## 1937 Reithrodontomys megalotis Rodent Control
## 1938 Reithrodontomys megalotis Rodent Control
## 1939 Reithrodontomys megalotis Rodent Control
## 1940 Reithrodontomys megalotis Rodent Control
## 1941 Sylvilagus audubonii Rabbit Control
## 1942 Sylvilagus audubonii Rabbit Control
## 1943 Sylvilagus audubonii Rabbit Control
## 1944 Peromyscus maniculatus Rodent Control
## 1945 Peromyscus maniculatus Rodent Control
## 1946 Peromyscus maniculatus Rodent Control
## 1947 Peromyscus maniculatus Rodent Control
## 1948 Peromyscus maniculatus Rodent Control
## 1949 Peromyscus maniculatus Rodent Control
## 1950 Peromyscus maniculatus Rodent Control
## 1951 Peromyscus maniculatus Rodent Control
## 1952 Peromyscus maniculatus Rodent Control
## 1953 Peromyscus maniculatus Rodent Control
## 1954 Peromyscus maniculatus Rodent Control
## 1955 Peromyscus maniculatus Rodent Control
## 1956 Peromyscus maniculatus Rodent Control
## 1957 Peromyscus maniculatus Rodent Control
## 1958 Peromyscus maniculatus Rodent Control
## 1959 Peromyscus maniculatus Rodent Control
## 1960 Peromyscus maniculatus Rodent Control
## 1961 Peromyscus maniculatus Rodent Control
## 1962 Peromyscus maniculatus Rodent Control
## 1963 Peromyscus maniculatus Rodent Control
## 1964 Peromyscus maniculatus Rodent Control
## 1965 Peromyscus maniculatus Rodent Control
## 1966 Peromyscus maniculatus Rodent Control
## 1967 Peromyscus maniculatus Rodent Control
## 1968 Peromyscus maniculatus Rodent Control
## 1969 Peromyscus maniculatus Rodent Control
## 1970 Peromyscus maniculatus Rodent Control
## 1971 Peromyscus maniculatus Rodent Control
## 1972 Peromyscus maniculatus Rodent Control
## 1973 Peromyscus maniculatus Rodent Control
## 1974 Peromyscus maniculatus Rodent Control
## 1975 Peromyscus maniculatus Rodent Control
## 1976 Peromyscus maniculatus Rodent Control
## 1977 Peromyscus maniculatus Rodent Control
## 1978 Peromyscus maniculatus Rodent Control
## 1979 Peromyscus maniculatus Rodent Control
## 1980 Ammospermophilus harrisi Rodent Control
## 1981 Ammospermophilus harrisi Rodent Control
## 1982 Ammospermophilus harrisi Rodent Control
## 1983 Ammospermophilus harrisi Rodent Control
## 1984 Ammospermophilus harrisi Rodent Control
## 1985 Ammospermophilus harrisi Rodent Control
## 1986 Ammospermophilus harrisi Rodent Control
## 1987 Dipodomys sp. Rodent Control
## 1988 Dipodomys sp. Rodent Control
## 1989 Dipodomys sp. Rodent Control
## 1990 Dipodomys sp. Rodent Control
## 1991 Amphispiza bilineata Bird Control
## 1992 Amphispiza bilineata Bird Control
## 1993 Amphispiza bilineata Bird Control
## 1994 Amphispiza bilineata Bird Control
## 1995 Amphispiza bilineata Bird Control
## 1996 Amphispiza bilineata Bird Control
## 1997 Amphispiza bilineata Bird Control
## 1998 Amphispiza bilineata Bird Control
## 1999 Amphispiza bilineata Bird Control
## 2000 Amphispiza bilineata Bird Control
## 2001 Amphispiza bilineata Bird Control
## 2002 Amphispiza bilineata Bird Control
## 2003 Amphispiza bilineata Bird Control
## 2004 Amphispiza bilineata Bird Control
## 2005 Calamospiza melanocorys Bird Control
## 2006 Callipepla squamata Bird Control
## 2007 Reithrodontomys fulvescens Rodent Control
## 2008 Rodent sp. Rodent Control
## 2009 Pipilo sp. Bird Control
## 2010 Lizard sp. Reptile Control
## 2011 Baiomys taylori Rodent Control
## 2012 Reithrodontomys montanus Rodent Control
## 2013 Sigmodon ochrognathus Rodent Control
## 2014 Sigmodon ochrognathus Rodent Control
## 2015 Sigmodon ochrognathus Rodent Control
## 2016 Sigmodon ochrognathus Rodent Control
## 2017 Sigmodon ochrognathus Rodent Control
## 2018 Sigmodon ochrognathus Rodent Control
## 2019 Sigmodon ochrognathus Rodent Control
## 2020 Sigmodon ochrognathus Rodent Control
## 2021 Chaetodipus baileyi Rodent Control
## 2022 Chaetodipus baileyi Rodent Control
## 2023 Chaetodipus baileyi Rodent Control
## 2024 Chaetodipus baileyi Rodent Control
## 2025 Chaetodipus baileyi Rodent Control
## 2026 Chaetodipus baileyi Rodent Control
## 2027 Chaetodipus baileyi Rodent Control
## 2028 Chaetodipus baileyi Rodent Control
## 2029 Chaetodipus baileyi Rodent Control
## 2030 Chaetodipus baileyi Rodent Control
## 2031 Chaetodipus baileyi Rodent Control
## 2032 Chaetodipus baileyi Rodent Control
## 2033 Chaetodipus baileyi Rodent Control
## 2034 Chaetodipus baileyi Rodent Control
## 2035 Chaetodipus baileyi Rodent Control
## 2036 Chaetodipus baileyi Rodent Control
## 2037 Chaetodipus baileyi Rodent Control
## 2038 Chaetodipus baileyi Rodent Control
## 2039 Chaetodipus baileyi Rodent Control
## 2040 Chaetodipus baileyi Rodent Control
## 2041 Chaetodipus baileyi Rodent Control
## 2042 Chaetodipus baileyi Rodent Control
## 2043 Chaetodipus baileyi Rodent Control
## 2044 Chaetodipus baileyi Rodent Control
## 2045 Chaetodipus baileyi Rodent Control
## 2046 Chaetodipus baileyi Rodent Control
## 2047 Chaetodipus baileyi Rodent Control
## 2048 Chaetodipus baileyi Rodent Control
## 2049 Chaetodipus baileyi Rodent Control
## 2050 Chaetodipus baileyi Rodent Control
## 2051 Chaetodipus baileyi Rodent Control
## 2052 Chaetodipus baileyi Rodent Control
## 2053 Chaetodipus baileyi Rodent Control
## 2054 Chaetodipus baileyi Rodent Control
## 2055 Chaetodipus baileyi Rodent Control
## 2056 Chaetodipus baileyi Rodent Control
## 2057 Chaetodipus baileyi Rodent Control
## 2058 Chaetodipus baileyi Rodent Control
## 2059 Chaetodipus baileyi Rodent Control
## 2060 Chaetodipus baileyi Rodent Control
## 2061 Chaetodipus baileyi Rodent Control
## 2062 Chaetodipus baileyi Rodent Control
## 2063 Chaetodipus baileyi Rodent Control
## 2064 Chaetodipus baileyi Rodent Control
## 2065 Chaetodipus baileyi Rodent Control
## 2066 Chaetodipus baileyi Rodent Control
## 2067 Chaetodipus baileyi Rodent Control
## 2068 Chaetodipus baileyi Rodent Control
## 2069 Chaetodipus baileyi Rodent Control
## 2070 Chaetodipus baileyi Rodent Control
## 2071 Chaetodipus baileyi Rodent Control
## 2072 Chaetodipus baileyi Rodent Control
## 2073 Chaetodipus baileyi Rodent Control
## 2074 Chaetodipus baileyi Rodent Control
## 2075 Chaetodipus baileyi Rodent Control
## 2076 Chaetodipus baileyi Rodent Control
## 2077 Chaetodipus baileyi Rodent Control
## 2078 Chaetodipus baileyi Rodent Control
## 2079 Chaetodipus baileyi Rodent Control
## 2080 Chaetodipus baileyi Rodent Control
## 2081 Chaetodipus baileyi Rodent Control
## 2082 Chaetodipus baileyi Rodent Control
## 2083 Chaetodipus baileyi Rodent Control
## 2084 Chaetodipus baileyi Rodent Control
## 2085 Chaetodipus baileyi Rodent Control
## 2086 Chaetodipus baileyi Rodent Control
## 2087 Chaetodipus baileyi Rodent Control
## 2088 Chaetodipus baileyi Rodent Control
## 2089 Chaetodipus baileyi Rodent Control
## 2090 Chaetodipus baileyi Rodent Control
## 2091 Chaetodipus baileyi Rodent Control
## 2092 Chaetodipus baileyi Rodent Control
## 2093 Chaetodipus baileyi Rodent Control
## 2094 Chaetodipus baileyi Rodent Control
## 2095 Chaetodipus baileyi Rodent Control
## 2096 Chaetodipus baileyi Rodent Control
## 2097 Chaetodipus baileyi Rodent Control
## 2098 Chaetodipus baileyi Rodent Control
## 2099 Chaetodipus baileyi Rodent Control
## 2100 Chaetodipus baileyi Rodent Control
## 2101 Chaetodipus baileyi Rodent Control
## 2102 Chaetodipus baileyi Rodent Control
## 2103 Chaetodipus baileyi Rodent Control
## 2104 Chaetodipus baileyi Rodent Control
## 2105 Chaetodipus baileyi Rodent Control
## 2106 Chaetodipus baileyi Rodent Control
## 2107 Chaetodipus baileyi Rodent Control
## 2108 Chaetodipus baileyi Rodent Control
## 2109 Chaetodipus baileyi Rodent Control
## 2110 Chaetodipus baileyi Rodent Control
## 2111 Chaetodipus baileyi Rodent Control
## 2112 Chaetodipus baileyi Rodent Control
## 2113 Chaetodipus baileyi Rodent Control
## 2114 Chaetodipus baileyi Rodent Control
## 2115 Chaetodipus baileyi Rodent Control
## 2116 Chaetodipus baileyi Rodent Control
## 2117 Chaetodipus baileyi Rodent Control
## 2118 Chaetodipus baileyi Rodent Control
## 2119 Chaetodipus baileyi Rodent Control
## 2120 Chaetodipus baileyi Rodent Control
## 2121 Chaetodipus baileyi Rodent Control
## 2122 Chaetodipus baileyi Rodent Control
## 2123 Chaetodipus baileyi Rodent Control
## 2124 Chaetodipus baileyi Rodent Control
## 2125 Chaetodipus baileyi Rodent Control
## 2126 Chaetodipus baileyi Rodent Control
## 2127 Chaetodipus baileyi Rodent Control
## 2128 Chaetodipus baileyi Rodent Control
## 2129 Chaetodipus baileyi Rodent Control
## 2130 Chaetodipus baileyi Rodent Control
## 2131 Chaetodipus baileyi Rodent Control
## 2132 Chaetodipus baileyi Rodent Control
## 2133 Chaetodipus baileyi Rodent Control
## 2134 Chaetodipus baileyi Rodent Control
## 2135 Chaetodipus baileyi Rodent Control
## 2136 Chaetodipus baileyi Rodent Control
## 2137 Chaetodipus baileyi Rodent Control
## 2138 Chaetodipus baileyi Rodent Control
## 2139 Chaetodipus baileyi Rodent Control
## 2140 Chaetodipus baileyi Rodent Control
## 2141 Chaetodipus baileyi Rodent Control
## 2142 Chaetodipus baileyi Rodent Control
## 2143 Chaetodipus baileyi Rodent Control
## 2144 Chaetodipus baileyi Rodent Control
## 2145 Chaetodipus baileyi Rodent Control
## 2146 Chaetodipus baileyi Rodent Control
## 2147 Chaetodipus baileyi Rodent Control
## 2148 Chaetodipus baileyi Rodent Control
## 2149 Chaetodipus baileyi Rodent Control
## 2150 Chaetodipus baileyi Rodent Control
## 2151 Chaetodipus baileyi Rodent Control
## 2152 Chaetodipus baileyi Rodent Control
## 2153 Chaetodipus baileyi Rodent Control
## 2154 Chaetodipus baileyi Rodent Control
## 2155 Chaetodipus baileyi Rodent Control
## 2156 Chaetodipus baileyi Rodent Control
## 2157 Chaetodipus baileyi Rodent Control
## 2158 Chaetodipus baileyi Rodent Control
## 2159 Chaetodipus baileyi Rodent Control
## 2160 Chaetodipus baileyi Rodent Control
## 2161 Chaetodipus baileyi Rodent Control
## 2162 Chaetodipus baileyi Rodent Control
## 2163 Chaetodipus baileyi Rodent Control
## 2164 Chaetodipus baileyi Rodent Control
## 2165 Chaetodipus baileyi Rodent Control
## 2166 Chaetodipus baileyi Rodent Control
## 2167 Chaetodipus baileyi Rodent Control
## 2168 Chaetodipus baileyi Rodent Control
## 2169 Chaetodipus baileyi Rodent Control
## 2170 Chaetodipus baileyi Rodent Control
## 2171 Chaetodipus baileyi Rodent Control
## 2172 Chaetodipus baileyi Rodent Control
## 2173 Chaetodipus baileyi Rodent Control
## 2174 Chaetodipus baileyi Rodent Control
## 2175 Chaetodipus baileyi Rodent Control
## 2176 Chaetodipus baileyi Rodent Control
## 2177 Chaetodipus baileyi Rodent Control
## 2178 Chaetodipus baileyi Rodent Control
## 2179 Chaetodipus baileyi Rodent Control
## 2180 Chaetodipus baileyi Rodent Control
## 2181 Chaetodipus baileyi Rodent Control
## 2182 Chaetodipus baileyi Rodent Control
## 2183 Chaetodipus baileyi Rodent Control
## 2184 Chaetodipus baileyi Rodent Control
## 2185 Chaetodipus baileyi Rodent Control
## 2186 Chaetodipus baileyi Rodent Control
## 2187 Chaetodipus baileyi Rodent Control
## 2188 Chaetodipus baileyi Rodent Control
## 2189 Chaetodipus baileyi Rodent Control
## 2190 Chaetodipus baileyi Rodent Control
## 2191 Chaetodipus baileyi Rodent Control
## 2192 Neotoma albigula Rodent Long-term Krat Exclosure
## 2193 Neotoma albigula Rodent Long-term Krat Exclosure
## 2194 Neotoma albigula Rodent Long-term Krat Exclosure
## 2195 Neotoma albigula Rodent Long-term Krat Exclosure
## 2196 Neotoma albigula Rodent Long-term Krat Exclosure
## 2197 Neotoma albigula Rodent Long-term Krat Exclosure
## 2198 Neotoma albigula Rodent Long-term Krat Exclosure
## 2199 Neotoma albigula Rodent Long-term Krat Exclosure
## 2200 Neotoma albigula Rodent Long-term Krat Exclosure
## 2201 Neotoma albigula Rodent Long-term Krat Exclosure
## 2202 Neotoma albigula Rodent Long-term Krat Exclosure
## 2203 Neotoma albigula Rodent Long-term Krat Exclosure
## 2204 Neotoma albigula Rodent Long-term Krat Exclosure
## 2205 Neotoma albigula Rodent Long-term Krat Exclosure
## 2206 Neotoma albigula Rodent Long-term Krat Exclosure
## 2207 Neotoma albigula Rodent Long-term Krat Exclosure
## 2208 Neotoma albigula Rodent Long-term Krat Exclosure
## 2209 Neotoma albigula Rodent Long-term Krat Exclosure
## 2210 Neotoma albigula Rodent Long-term Krat Exclosure
## 2211 Neotoma albigula Rodent Long-term Krat Exclosure
## 2212 Neotoma albigula Rodent Long-term Krat Exclosure
## 2213 Neotoma albigula Rodent Long-term Krat Exclosure
## 2214 Neotoma albigula Rodent Long-term Krat Exclosure
## 2215 Neotoma albigula Rodent Long-term Krat Exclosure
## 2216 Neotoma albigula Rodent Long-term Krat Exclosure
## 2217 Neotoma albigula Rodent Long-term Krat Exclosure
## 2218 Neotoma albigula Rodent Long-term Krat Exclosure
## 2219 Neotoma albigula Rodent Long-term Krat Exclosure
## 2220 Neotoma albigula Rodent Long-term Krat Exclosure
## 2221 Neotoma albigula Rodent Long-term Krat Exclosure
## 2222 Neotoma albigula Rodent Long-term Krat Exclosure
## 2223 Neotoma albigula Rodent Long-term Krat Exclosure
## 2224 Neotoma albigula Rodent Long-term Krat Exclosure
## 2225 Neotoma albigula Rodent Long-term Krat Exclosure
## 2226 Neotoma albigula Rodent Long-term Krat Exclosure
## 2227 Neotoma albigula Rodent Long-term Krat Exclosure
## 2228 Neotoma albigula Rodent Long-term Krat Exclosure
## 2229 Neotoma albigula Rodent Long-term Krat Exclosure
## 2230 Neotoma albigula Rodent Long-term Krat Exclosure
## 2231 Neotoma albigula Rodent Long-term Krat Exclosure
## 2232 Neotoma albigula Rodent Long-term Krat Exclosure
## 2233 Neotoma albigula Rodent Long-term Krat Exclosure
## 2234 Neotoma albigula Rodent Long-term Krat Exclosure
## 2235 Neotoma albigula Rodent Long-term Krat Exclosure
## 2236 Neotoma albigula Rodent Long-term Krat Exclosure
## 2237 Neotoma albigula Rodent Long-term Krat Exclosure
## 2238 Neotoma albigula Rodent Long-term Krat Exclosure
## 2239 Neotoma albigula Rodent Long-term Krat Exclosure
## 2240 Neotoma albigula Rodent Long-term Krat Exclosure
## 2241 Neotoma albigula Rodent Long-term Krat Exclosure
## 2242 Neotoma albigula Rodent Long-term Krat Exclosure
## 2243 Neotoma albigula Rodent Long-term Krat Exclosure
## 2244 Neotoma albigula Rodent Long-term Krat Exclosure
## 2245 Neotoma albigula Rodent Long-term Krat Exclosure
## 2246 Neotoma albigula Rodent Long-term Krat Exclosure
## 2247 Neotoma albigula Rodent Long-term Krat Exclosure
## 2248 Neotoma albigula Rodent Long-term Krat Exclosure
## 2249 Neotoma albigula Rodent Long-term Krat Exclosure
## 2250 Neotoma albigula Rodent Long-term Krat Exclosure
## 2251 Neotoma albigula Rodent Long-term Krat Exclosure
## 2252 Neotoma albigula Rodent Long-term Krat Exclosure
## 2253 Neotoma albigula Rodent Long-term Krat Exclosure
## 2254 Neotoma albigula Rodent Long-term Krat Exclosure
## 2255 Neotoma albigula Rodent Long-term Krat Exclosure
## 2256 Neotoma albigula Rodent Long-term Krat Exclosure
## 2257 Neotoma albigula Rodent Long-term Krat Exclosure
## 2258 Neotoma albigula Rodent Long-term Krat Exclosure
## 2259 Neotoma albigula Rodent Long-term Krat Exclosure
## 2260 Neotoma albigula Rodent Long-term Krat Exclosure
## 2261 Neotoma albigula Rodent Long-term Krat Exclosure
## 2262 Neotoma albigula Rodent Long-term Krat Exclosure
## 2263 Neotoma albigula Rodent Long-term Krat Exclosure
## 2264 Neotoma albigula Rodent Long-term Krat Exclosure
## 2265 Neotoma albigula Rodent Long-term Krat Exclosure
## 2266 Neotoma albigula Rodent Long-term Krat Exclosure
## 2267 Neotoma albigula Rodent Long-term Krat Exclosure
## 2268 Neotoma albigula Rodent Long-term Krat Exclosure
## 2269 Neotoma albigula Rodent Long-term Krat Exclosure
## 2270 Neotoma albigula Rodent Long-term Krat Exclosure
## 2271 Neotoma albigula Rodent Long-term Krat Exclosure
## 2272 Neotoma albigula Rodent Long-term Krat Exclosure
## 2273 Neotoma albigula Rodent Long-term Krat Exclosure
## 2274 Neotoma albigula Rodent Long-term Krat Exclosure
## 2275 Neotoma albigula Rodent Long-term Krat Exclosure
## 2276 Neotoma albigula Rodent Long-term Krat Exclosure
## 2277 Neotoma albigula Rodent Long-term Krat Exclosure
## 2278 Neotoma albigula Rodent Long-term Krat Exclosure
## 2279 Neotoma albigula Rodent Long-term Krat Exclosure
## 2280 Neotoma albigula Rodent Long-term Krat Exclosure
## 2281 Neotoma albigula Rodent Long-term Krat Exclosure
## 2282 Neotoma albigula Rodent Long-term Krat Exclosure
## 2283 Neotoma albigula Rodent Long-term Krat Exclosure
## 2284 Neotoma albigula Rodent Long-term Krat Exclosure
## 2285 Neotoma albigula Rodent Long-term Krat Exclosure
## 2286 Neotoma albigula Rodent Long-term Krat Exclosure
## 2287 Neotoma albigula Rodent Long-term Krat Exclosure
## 2288 Neotoma albigula Rodent Long-term Krat Exclosure
## 2289 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2290 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2291 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2292 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2293 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2294 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2295 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2296 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2297 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2298 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2299 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2300 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2301 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2302 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2303 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2304 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2305 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2306 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2307 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2308 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2309 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2310 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2311 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2312 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2313 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2314 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2315 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2316 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2317 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2318 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2319 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2320 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2321 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2322 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2323 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2324 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2325 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2326 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2327 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2328 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2329 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2330 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2331 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2332 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2333 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2334 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2335 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2336 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2337 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2338 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2339 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2340 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2341 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2342 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2343 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2344 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2345 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2346 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2347 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2348 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2349 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2350 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2351 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2352 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2353 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2354 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2355 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2356 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2357 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2358 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2359 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2360 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2361 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2362 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2363 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2364 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2365 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2366 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2367 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2368 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2369 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2370 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2371 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2372 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2373 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2374 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2375 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2376 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2377 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2378 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2379 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2380 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2381 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2382 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2383 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2384 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2385 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2386 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2387 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2388 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2389 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2390 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2391 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2392 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2393 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2394 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2395 Dipodomys merriami Rodent Long-term Krat Exclosure
## 2396 Perognathus flavus Rodent Long-term Krat Exclosure
## 2397 Perognathus flavus Rodent Long-term Krat Exclosure
## 2398 Perognathus flavus Rodent Long-term Krat Exclosure
## 2399 Perognathus flavus Rodent Long-term Krat Exclosure
## 2400 Perognathus flavus Rodent Long-term Krat Exclosure
## 2401 Perognathus flavus Rodent Long-term Krat Exclosure
## 2402 Perognathus flavus Rodent Long-term Krat Exclosure
## 2403 Perognathus flavus Rodent Long-term Krat Exclosure
## 2404 Perognathus flavus Rodent Long-term Krat Exclosure
## 2405 Perognathus flavus Rodent Long-term Krat Exclosure
## 2406 Perognathus flavus Rodent Long-term Krat Exclosure
## 2407 Perognathus flavus Rodent Long-term Krat Exclosure
## 2408 Perognathus flavus Rodent Long-term Krat Exclosure
## 2409 Perognathus flavus Rodent Long-term Krat Exclosure
## 2410 Perognathus flavus Rodent Long-term Krat Exclosure
## 2411 Perognathus flavus Rodent Long-term Krat Exclosure
## 2412 Perognathus flavus Rodent Long-term Krat Exclosure
## 2413 Perognathus flavus Rodent Long-term Krat Exclosure
## 2414 Perognathus flavus Rodent Long-term Krat Exclosure
## 2415 Perognathus flavus Rodent Long-term Krat Exclosure
## 2416 Perognathus flavus Rodent Long-term Krat Exclosure
## 2417 Perognathus flavus Rodent Long-term Krat Exclosure
## 2418 Perognathus flavus Rodent Long-term Krat Exclosure
## 2419 Perognathus flavus Rodent Long-term Krat Exclosure
## 2420 Perognathus flavus Rodent Long-term Krat Exclosure
## 2421 Perognathus flavus Rodent Long-term Krat Exclosure
## 2422 Perognathus flavus Rodent Long-term Krat Exclosure
## 2423 Perognathus flavus Rodent Long-term Krat Exclosure
## 2424 Perognathus flavus Rodent Long-term Krat Exclosure
## 2425 Perognathus flavus Rodent Long-term Krat Exclosure
## 2426 Perognathus flavus Rodent Long-term Krat Exclosure
## 2427 Perognathus flavus Rodent Long-term Krat Exclosure
## 2428 Perognathus flavus Rodent Long-term Krat Exclosure
## 2429 Perognathus flavus Rodent Long-term Krat Exclosure
## 2430 Perognathus flavus Rodent Long-term Krat Exclosure
## 2431 Perognathus flavus Rodent Long-term Krat Exclosure
## 2432 Perognathus flavus Rodent Long-term Krat Exclosure
## 2433 Perognathus flavus Rodent Long-term Krat Exclosure
## 2434 Perognathus flavus Rodent Long-term Krat Exclosure
## 2435 Perognathus flavus Rodent Long-term Krat Exclosure
## 2436 Perognathus flavus Rodent Long-term Krat Exclosure
## 2437 Perognathus flavus Rodent Long-term Krat Exclosure
## 2438 Perognathus flavus Rodent Long-term Krat Exclosure
## 2439 Perognathus flavus Rodent Long-term Krat Exclosure
## 2440 Perognathus flavus Rodent Long-term Krat Exclosure
## 2441 Perognathus flavus Rodent Long-term Krat Exclosure
## 2442 Perognathus flavus Rodent Long-term Krat Exclosure
## 2443 Perognathus flavus Rodent Long-term Krat Exclosure
## 2444 Perognathus flavus Rodent Long-term Krat Exclosure
## 2445 Perognathus flavus Rodent Long-term Krat Exclosure
## 2446 Perognathus flavus Rodent Long-term Krat Exclosure
## 2447 Perognathus flavus Rodent Long-term Krat Exclosure
## 2448 Perognathus flavus Rodent Long-term Krat Exclosure
## 2449 Perognathus flavus Rodent Long-term Krat Exclosure
## 2450 Perognathus flavus Rodent Long-term Krat Exclosure
## 2451 Perognathus flavus Rodent Long-term Krat Exclosure
## 2452 Perognathus flavus Rodent Long-term Krat Exclosure
## 2453 Perognathus flavus Rodent Long-term Krat Exclosure
## 2454 Perognathus flavus Rodent Long-term Krat Exclosure
## 2455 Perognathus flavus Rodent Long-term Krat Exclosure
## 2456 Perognathus flavus Rodent Long-term Krat Exclosure
## 2457 Perognathus flavus Rodent Long-term Krat Exclosure
## 2458 Perognathus flavus Rodent Long-term Krat Exclosure
## 2459 Perognathus flavus Rodent Long-term Krat Exclosure
## 2460 Perognathus flavus Rodent Long-term Krat Exclosure
## 2461 Perognathus flavus Rodent Long-term Krat Exclosure
## 2462 Perognathus flavus Rodent Long-term Krat Exclosure
## 2463 Perognathus flavus Rodent Long-term Krat Exclosure
## 2464 Perognathus flavus Rodent Long-term Krat Exclosure
## 2465 Perognathus flavus Rodent Long-term Krat Exclosure
## 2466 Perognathus flavus Rodent Long-term Krat Exclosure
## 2467 Perognathus flavus Rodent Long-term Krat Exclosure
## 2468 Perognathus flavus Rodent Long-term Krat Exclosure
## 2469 Perognathus flavus Rodent Long-term Krat Exclosure
## 2470 Perognathus flavus Rodent Long-term Krat Exclosure
## 2471 Perognathus flavus Rodent Long-term Krat Exclosure
## 2472 Perognathus flavus Rodent Long-term Krat Exclosure
## 2473 Perognathus flavus Rodent Long-term Krat Exclosure
## 2474 Perognathus flavus Rodent Long-term Krat Exclosure
## 2475 Perognathus flavus Rodent Long-term Krat Exclosure
## 2476 Perognathus flavus Rodent Long-term Krat Exclosure
## 2477 Perognathus flavus Rodent Long-term Krat Exclosure
## 2478 Perognathus flavus Rodent Long-term Krat Exclosure
## 2479 Perognathus flavus Rodent Long-term Krat Exclosure
## 2480 Perognathus flavus Rodent Long-term Krat Exclosure
## 2481 Perognathus flavus Rodent Long-term Krat Exclosure
## 2482 Perognathus flavus Rodent Long-term Krat Exclosure
## 2483 Perognathus flavus Rodent Long-term Krat Exclosure
## 2484 Perognathus flavus Rodent Long-term Krat Exclosure
## 2485 Perognathus flavus Rodent Long-term Krat Exclosure
## 2486 Perognathus flavus Rodent Long-term Krat Exclosure
## 2487 Perognathus flavus Rodent Long-term Krat Exclosure
## 2488 Perognathus flavus Rodent Long-term Krat Exclosure
## 2489 Perognathus flavus Rodent Long-term Krat Exclosure
## 2490 Perognathus flavus Rodent Long-term Krat Exclosure
## 2491 Perognathus flavus Rodent Long-term Krat Exclosure
## 2492 Perognathus flavus Rodent Long-term Krat Exclosure
## 2493 Perognathus flavus Rodent Long-term Krat Exclosure
## 2494 Perognathus flavus Rodent Long-term Krat Exclosure
## 2495 Perognathus flavus Rodent Long-term Krat Exclosure
## 2496 Perognathus flavus Rodent Long-term Krat Exclosure
## 2497 Perognathus flavus Rodent Long-term Krat Exclosure
## 2498 Perognathus flavus Rodent Long-term Krat Exclosure
## 2499 Perognathus flavus Rodent Long-term Krat Exclosure
## 2500 Perognathus flavus Rodent Long-term Krat Exclosure
## 2501 Perognathus flavus Rodent Long-term Krat Exclosure
## 2502 Perognathus flavus Rodent Long-term Krat Exclosure
## 2503 Perognathus flavus Rodent Long-term Krat Exclosure
## 2504 Perognathus flavus Rodent Long-term Krat Exclosure
## 2505 Perognathus flavus Rodent Long-term Krat Exclosure
## 2506 Perognathus flavus Rodent Long-term Krat Exclosure
## 2507 Perognathus flavus Rodent Long-term Krat Exclosure
## 2508 Perognathus flavus Rodent Long-term Krat Exclosure
## 2509 Perognathus flavus Rodent Long-term Krat Exclosure
## 2510 Perognathus flavus Rodent Long-term Krat Exclosure
## 2511 Perognathus flavus Rodent Long-term Krat Exclosure
## 2512 Perognathus flavus Rodent Long-term Krat Exclosure
## 2513 Perognathus flavus Rodent Long-term Krat Exclosure
## 2514 Perognathus flavus Rodent Long-term Krat Exclosure
## 2515 Perognathus flavus Rodent Long-term Krat Exclosure
## 2516 Perognathus flavus Rodent Long-term Krat Exclosure
## 2517 Perognathus flavus Rodent Long-term Krat Exclosure
## 2518 Perognathus flavus Rodent Long-term Krat Exclosure
## 2519 Perognathus flavus Rodent Long-term Krat Exclosure
## 2520 Perognathus flavus Rodent Long-term Krat Exclosure
## 2521 Perognathus flavus Rodent Long-term Krat Exclosure
## 2522 Perognathus flavus Rodent Long-term Krat Exclosure
## 2523 Perognathus flavus Rodent Long-term Krat Exclosure
## 2524 Perognathus flavus Rodent Long-term Krat Exclosure
## 2525 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2526 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2527 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2528 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2529 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2530 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2531 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2532 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2533 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2534 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2535 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2536 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2537 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2538 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2539 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2540 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2541 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2542 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2543 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2544 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2545 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2546 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2547 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2548 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2549 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2550 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2551 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2552 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2553 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2554 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2555 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2556 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2557 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2558 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2559 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2560 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2561 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2562 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2563 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2564 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2565 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2566 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2567 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2568 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2569 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2570 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2571 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2572 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2573 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2574 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2575 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2576 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2577 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2578 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2579 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2580 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2581 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2582 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2583 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2584 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2585 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2586 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2587 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2588 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2589 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2590 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 2591 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2592 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2593 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2594 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2595 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2596 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2597 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2598 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2599 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2600 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2601 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2602 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2603 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2604 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2605 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2606 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2607 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2608 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 2609 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2610 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2611 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2612 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2613 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2614 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2615 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2616 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2617 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2618 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2619 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2620 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2621 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2622 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2623 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2624 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2625 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2626 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2627 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2628 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2629 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2630 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2631 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2632 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2633 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2634 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2635 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2636 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2637 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2638 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2639 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2640 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2641 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2642 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2643 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2644 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2645 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2646 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2647 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2648 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2649 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2650 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2651 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2652 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2653 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2654 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2655 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2656 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2657 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2658 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2659 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2660 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2661 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2662 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2663 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2664 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2665 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2666 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2667 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2668 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2669 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2670 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2671 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2672 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2673 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2674 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2675 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2676 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2677 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2678 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2679 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2680 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2681 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2682 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2683 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2684 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2685 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2686 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2687 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2688 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2689 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2690 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2691 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2692 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2693 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2694 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2695 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2696 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2697 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2698 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2699 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2700 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2701 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2702 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2703 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2704 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2705 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2706 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2707 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2708 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2709 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2710 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2711 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2712 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2713 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2714 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2715 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2716 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2717 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2718 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2719 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2720 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2721 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2722 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2723 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2724 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2725 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2726 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2727 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2728 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2729 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2730 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2731 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2732 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2733 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2734 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2735 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2736 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2737 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2738 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2739 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2740 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2741 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2742 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2743 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2744 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2745 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2746 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2747 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2748 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2749 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2750 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2751 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2752 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2753 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2754 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2755 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2756 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2757 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2758 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2759 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2760 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2761 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2762 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2763 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2764 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2765 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2766 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2767 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2768 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2769 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2770 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2771 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2772 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2773 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2774 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2775 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2776 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2777 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2778 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2779 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2780 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2781 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2782 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2783 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2784 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2785 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2786 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2787 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2788 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2789 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2790 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2791 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2792 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2793 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2794 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2795 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2796 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2797 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2798 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2799 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2800 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2801 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2802 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2803 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2804 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2805 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2806 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2807 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2808 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2809 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2810 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2811 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2812 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2813 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2814 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2815 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2816 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2817 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2818 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2819 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2820 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2821 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2822 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2823 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2824 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2825 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2826 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2827 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2828 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2829 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2830 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2831 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2832 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2833 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2834 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2835 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2836 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2837 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2838 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2839 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2840 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2841 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2842 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2843 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2844 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2845 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2846 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2847 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2848 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2849 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2850 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2851 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2852 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2853 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2854 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2855 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2856 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2857 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2858 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2859 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2860 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2861 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2862 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2863 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2864 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2865 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2866 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2867 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2868 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2869 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2870 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2871 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2872 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2873 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2874 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2875 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2876 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2877 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2878 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2879 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2880 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2881 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2882 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2883 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2884 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2885 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2886 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2887 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2888 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2889 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2890 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2891 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2892 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2893 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2894 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2895 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2896 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2897 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2898 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2899 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2900 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2901 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2902 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2903 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2904 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2905 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2906 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2907 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2908 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2909 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2910 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2911 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2912 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2913 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2914 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2915 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2916 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2917 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2918 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2919 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2920 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2921 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2922 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2923 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2924 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2925 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2926 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2927 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2928 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2929 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2930 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2931 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2932 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2933 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2934 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2935 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2936 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2937 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2938 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2939 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2940 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2941 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2942 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2943 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2944 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2945 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2946 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2947 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2948 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2949 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2950 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2951 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2952 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2953 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2954 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2955 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2956 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2957 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2958 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2959 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2960 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2961 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2962 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2963 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2964 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2965 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2966 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2967 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2968 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2969 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2970 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2971 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2972 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2973 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2974 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2975 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2976 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2977 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2978 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2979 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2980 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2981 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 2982 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2983 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2984 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2985 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2986 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2987 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2988 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2989 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2990 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2991 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2992 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2993 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2994 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2995 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2996 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2997 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2998 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 2999 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3000 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3001 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3002 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3003 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3004 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3005 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3006 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3007 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3008 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3009 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3010 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3011 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3012 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3013 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3014 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 3015 Onychomys torridus Rodent Long-term Krat Exclosure
## 3016 Onychomys torridus Rodent Long-term Krat Exclosure
## 3017 Onychomys torridus Rodent Long-term Krat Exclosure
## 3018 Onychomys torridus Rodent Long-term Krat Exclosure
## 3019 Onychomys torridus Rodent Long-term Krat Exclosure
## 3020 Onychomys torridus Rodent Long-term Krat Exclosure
## 3021 Onychomys torridus Rodent Long-term Krat Exclosure
## 3022 Onychomys torridus Rodent Long-term Krat Exclosure
## 3023 Onychomys torridus Rodent Long-term Krat Exclosure
## 3024 Onychomys torridus Rodent Long-term Krat Exclosure
## 3025 Onychomys torridus Rodent Long-term Krat Exclosure
## 3026 Onychomys torridus Rodent Long-term Krat Exclosure
## 3027 Onychomys torridus Rodent Long-term Krat Exclosure
## 3028 Onychomys torridus Rodent Long-term Krat Exclosure
## 3029 Onychomys torridus Rodent Long-term Krat Exclosure
## 3030 Onychomys torridus Rodent Long-term Krat Exclosure
## 3031 Onychomys torridus Rodent Long-term Krat Exclosure
## 3032 Onychomys torridus Rodent Long-term Krat Exclosure
## 3033 Onychomys torridus Rodent Long-term Krat Exclosure
## 3034 Onychomys torridus Rodent Long-term Krat Exclosure
## 3035 Onychomys torridus Rodent Long-term Krat Exclosure
## 3036 Onychomys torridus Rodent Long-term Krat Exclosure
## 3037 Onychomys torridus Rodent Long-term Krat Exclosure
## 3038 Onychomys torridus Rodent Long-term Krat Exclosure
## 3039 Onychomys torridus Rodent Long-term Krat Exclosure
## 3040 Onychomys torridus Rodent Long-term Krat Exclosure
## 3041 Onychomys torridus Rodent Long-term Krat Exclosure
## 3042 Onychomys torridus Rodent Long-term Krat Exclosure
## 3043 Onychomys torridus Rodent Long-term Krat Exclosure
## 3044 Onychomys torridus Rodent Long-term Krat Exclosure
## 3045 Onychomys torridus Rodent Long-term Krat Exclosure
## 3046 Onychomys torridus Rodent Long-term Krat Exclosure
## 3047 Onychomys torridus Rodent Long-term Krat Exclosure
## 3048 Onychomys torridus Rodent Long-term Krat Exclosure
## 3049 Onychomys torridus Rodent Long-term Krat Exclosure
## 3050 Onychomys torridus Rodent Long-term Krat Exclosure
## 3051 Onychomys torridus Rodent Long-term Krat Exclosure
## 3052 Onychomys torridus Rodent Long-term Krat Exclosure
## 3053 Onychomys torridus Rodent Long-term Krat Exclosure
## 3054 Onychomys torridus Rodent Long-term Krat Exclosure
## 3055 Onychomys torridus Rodent Long-term Krat Exclosure
## 3056 Onychomys torridus Rodent Long-term Krat Exclosure
## 3057 Onychomys torridus Rodent Long-term Krat Exclosure
## 3058 Onychomys torridus Rodent Long-term Krat Exclosure
## 3059 Onychomys torridus Rodent Long-term Krat Exclosure
## 3060 Onychomys torridus Rodent Long-term Krat Exclosure
## 3061 Onychomys torridus Rodent Long-term Krat Exclosure
## 3062 Onychomys torridus Rodent Long-term Krat Exclosure
## 3063 Onychomys torridus Rodent Long-term Krat Exclosure
## 3064 Onychomys torridus Rodent Long-term Krat Exclosure
## 3065 Onychomys torridus Rodent Long-term Krat Exclosure
## 3066 Onychomys torridus Rodent Long-term Krat Exclosure
## 3067 Onychomys torridus Rodent Long-term Krat Exclosure
## 3068 Onychomys torridus Rodent Long-term Krat Exclosure
## 3069 Onychomys torridus Rodent Long-term Krat Exclosure
## 3070 Onychomys torridus Rodent Long-term Krat Exclosure
## 3071 Onychomys torridus Rodent Long-term Krat Exclosure
## 3072 Onychomys torridus Rodent Long-term Krat Exclosure
## 3073 Onychomys torridus Rodent Long-term Krat Exclosure
## 3074 Onychomys torridus Rodent Long-term Krat Exclosure
## 3075 Onychomys torridus Rodent Long-term Krat Exclosure
## 3076 Onychomys torridus Rodent Long-term Krat Exclosure
## 3077 Onychomys torridus Rodent Long-term Krat Exclosure
## 3078 Onychomys torridus Rodent Long-term Krat Exclosure
## 3079 Onychomys torridus Rodent Long-term Krat Exclosure
## 3080 Onychomys torridus Rodent Long-term Krat Exclosure
## 3081 Onychomys torridus Rodent Long-term Krat Exclosure
## 3082 Onychomys torridus Rodent Long-term Krat Exclosure
## 3083 Onychomys torridus Rodent Long-term Krat Exclosure
## 3084 Onychomys torridus Rodent Long-term Krat Exclosure
## 3085 Onychomys torridus Rodent Long-term Krat Exclosure
## 3086 Onychomys torridus Rodent Long-term Krat Exclosure
## 3087 Onychomys torridus Rodent Long-term Krat Exclosure
## 3088 Onychomys torridus Rodent Long-term Krat Exclosure
## 3089 Onychomys torridus Rodent Long-term Krat Exclosure
## 3090 Onychomys torridus Rodent Long-term Krat Exclosure
## 3091 Onychomys torridus Rodent Long-term Krat Exclosure
## 3092 Onychomys torridus Rodent Long-term Krat Exclosure
## 3093 Onychomys torridus Rodent Long-term Krat Exclosure
## 3094 Onychomys torridus Rodent Long-term Krat Exclosure
## 3095 Onychomys torridus Rodent Long-term Krat Exclosure
## 3096 Onychomys torridus Rodent Long-term Krat Exclosure
## 3097 Onychomys torridus Rodent Long-term Krat Exclosure
## 3098 Onychomys torridus Rodent Long-term Krat Exclosure
## 3099 Onychomys torridus Rodent Long-term Krat Exclosure
## 3100 Onychomys torridus Rodent Long-term Krat Exclosure
## 3101 Onychomys torridus Rodent Long-term Krat Exclosure
## 3102 Onychomys torridus Rodent Long-term Krat Exclosure
## 3103 Onychomys torridus Rodent Long-term Krat Exclosure
## 3104 Onychomys torridus Rodent Long-term Krat Exclosure
## 3105 Onychomys torridus Rodent Long-term Krat Exclosure
## 3106 Onychomys torridus Rodent Long-term Krat Exclosure
## 3107 Onychomys torridus Rodent Long-term Krat Exclosure
## 3108 Onychomys torridus Rodent Long-term Krat Exclosure
## 3109 Onychomys torridus Rodent Long-term Krat Exclosure
## 3110 Onychomys torridus Rodent Long-term Krat Exclosure
## 3111 Onychomys torridus Rodent Long-term Krat Exclosure
## 3112 Onychomys torridus Rodent Long-term Krat Exclosure
## 3113 Onychomys torridus Rodent Long-term Krat Exclosure
## 3114 Onychomys torridus Rodent Long-term Krat Exclosure
## 3115 Onychomys torridus Rodent Long-term Krat Exclosure
## 3116 Onychomys torridus Rodent Long-term Krat Exclosure
## 3117 Onychomys torridus Rodent Long-term Krat Exclosure
## 3118 Onychomys torridus Rodent Long-term Krat Exclosure
## 3119 Onychomys torridus Rodent Long-term Krat Exclosure
## 3120 Onychomys torridus Rodent Long-term Krat Exclosure
## 3121 Onychomys torridus Rodent Long-term Krat Exclosure
## 3122 Onychomys torridus Rodent Long-term Krat Exclosure
## 3123 Onychomys torridus Rodent Long-term Krat Exclosure
## 3124 Onychomys torridus Rodent Long-term Krat Exclosure
## 3125 Onychomys torridus Rodent Long-term Krat Exclosure
## 3126 Onychomys torridus Rodent Long-term Krat Exclosure
## 3127 Onychomys torridus Rodent Long-term Krat Exclosure
## 3128 Onychomys torridus Rodent Long-term Krat Exclosure
## 3129 Onychomys torridus Rodent Long-term Krat Exclosure
## 3130 Onychomys torridus Rodent Long-term Krat Exclosure
## 3131 Onychomys torridus Rodent Long-term Krat Exclosure
## 3132 Onychomys torridus Rodent Long-term Krat Exclosure
## 3133 Onychomys torridus Rodent Long-term Krat Exclosure
## 3134 Onychomys torridus Rodent Long-term Krat Exclosure
## 3135 Onychomys torridus Rodent Long-term Krat Exclosure
## 3136 Onychomys torridus Rodent Long-term Krat Exclosure
## 3137 Onychomys torridus Rodent Long-term Krat Exclosure
## 3138 Onychomys torridus Rodent Long-term Krat Exclosure
## 3139 Onychomys torridus Rodent Long-term Krat Exclosure
## 3140 Onychomys torridus Rodent Long-term Krat Exclosure
## 3141 Onychomys torridus Rodent Long-term Krat Exclosure
## 3142 Onychomys torridus Rodent Long-term Krat Exclosure
## 3143 Onychomys torridus Rodent Long-term Krat Exclosure
## 3144 Onychomys torridus Rodent Long-term Krat Exclosure
## 3145 Onychomys torridus Rodent Long-term Krat Exclosure
## 3146 Onychomys torridus Rodent Long-term Krat Exclosure
## 3147 Onychomys torridus Rodent Long-term Krat Exclosure
## 3148 Onychomys torridus Rodent Long-term Krat Exclosure
## 3149 Onychomys torridus Rodent Long-term Krat Exclosure
## 3150 Onychomys torridus Rodent Long-term Krat Exclosure
## 3151 Onychomys torridus Rodent Long-term Krat Exclosure
## 3152 Onychomys torridus Rodent Long-term Krat Exclosure
## 3153 Onychomys torridus Rodent Long-term Krat Exclosure
## 3154 Onychomys torridus Rodent Long-term Krat Exclosure
## 3155 Onychomys torridus Rodent Long-term Krat Exclosure
## 3156 Onychomys torridus Rodent Long-term Krat Exclosure
## 3157 Onychomys torridus Rodent Long-term Krat Exclosure
## 3158 Onychomys torridus Rodent Long-term Krat Exclosure
## 3159 Onychomys torridus Rodent Long-term Krat Exclosure
## 3160 Onychomys torridus Rodent Long-term Krat Exclosure
## 3161 Onychomys torridus Rodent Long-term Krat Exclosure
## 3162 Onychomys torridus Rodent Long-term Krat Exclosure
## 3163 Onychomys torridus Rodent Long-term Krat Exclosure
## 3164 Onychomys torridus Rodent Long-term Krat Exclosure
## 3165 Onychomys torridus Rodent Long-term Krat Exclosure
## 3166 Onychomys torridus Rodent Long-term Krat Exclosure
## 3167 Onychomys torridus Rodent Long-term Krat Exclosure
## 3168 Onychomys torridus Rodent Long-term Krat Exclosure
## 3169 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3170 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3171 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3172 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3173 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3174 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3175 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3176 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3177 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3178 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3179 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3180 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3181 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3182 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3183 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3184 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3185 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3186 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3187 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3188 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3189 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3190 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3191 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3192 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3193 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3194 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3195 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3196 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3197 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3198 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3199 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3200 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3201 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3202 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3203 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3204 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3205 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3206 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3207 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3208 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3209 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3210 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3211 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3212 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3213 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3214 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3215 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3216 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3217 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3218 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3219 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3220 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3221 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3222 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3223 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3224 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3225 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3226 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3227 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3228 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3229 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3230 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3231 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3232 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3233 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3234 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3235 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3236 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3237 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3238 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3239 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3240 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3241 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3242 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3243 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3244 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3245 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3246 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3247 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3248 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3249 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3250 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3251 Dipodomys ordii Rodent Long-term Krat Exclosure
## 3252 Onychomys sp. Rodent Long-term Krat Exclosure
## 3253 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3254 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3255 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3256 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3257 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3258 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3259 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3260 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3261 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3262 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3263 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3264 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3265 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3266 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3267 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3268 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3269 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 3270 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3271 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3272 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3273 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3274 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3275 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3276 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3277 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3278 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3279 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3280 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3281 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3282 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3283 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3284 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3285 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3286 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3287 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3288 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3289 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3290 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3291 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3292 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3293 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3294 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3295 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3296 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3297 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3298 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3299 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3300 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3301 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3302 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3303 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3304 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3305 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3306 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3307 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3308 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3309 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3310 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3311 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3312 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3313 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3314 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3315 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3316 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3317 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3318 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3319 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3320 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3321 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3322 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3323 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3324 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3325 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3326 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3327 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3328 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3329 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3330 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3331 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3332 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 3333 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3334 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3335 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3336 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3337 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3338 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3339 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3340 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3341 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3342 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3343 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3344 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3345 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3346 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3347 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3348 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3349 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3350 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3351 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3352 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3353 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3354 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3355 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3356 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3357 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3358 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3359 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3360 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3361 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3362 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3363 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3364 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3365 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3366 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3367 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3368 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3369 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3370 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3371 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3372 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3373 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3374 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3375 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3376 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3377 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3378 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3379 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3380 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3381 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3382 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3383 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3384 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3385 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3386 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3387 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3388 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3389 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3390 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3391 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3392 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3393 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3394 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3395 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3396 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3397 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3398 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3399 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3400 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3401 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3402 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3403 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3404 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3405 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3406 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3407 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3408 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3409 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3410 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3411 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3412 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3413 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3414 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3415 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3416 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3417 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3418 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3419 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3420 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3421 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3422 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3423 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3424 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3425 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3426 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3427 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3428 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3429 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3430 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3431 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3432 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3433 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3434 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3435 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3436 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3437 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3438 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3439 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3440 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3441 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3442 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3443 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3444 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3445 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3446 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3447 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3448 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3449 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3450 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3451 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3452 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3453 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3454 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3455 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3456 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3457 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3458 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3459 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3460 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3461 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3462 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3463 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3464 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3465 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3466 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3467 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3468 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3469 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3470 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3471 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3472 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3473 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3474 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3475 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3476 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3477 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3478 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3479 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3480 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3481 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3482 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3483 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3484 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3485 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3486 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3487 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3488 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3489 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3490 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3491 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3492 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3493 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3494 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3495 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3496 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3497 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3498 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3499 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3500 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3501 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3502 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3503 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3504 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3505 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3506 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3507 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3508 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3509 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3510 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3511 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3512 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3513 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3514 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3515 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3516 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3517 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3518 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3519 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3520 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3521 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3522 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3523 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3524 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3525 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3526 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3527 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3528 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3529 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3530 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3531 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3532 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3533 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3534 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3535 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3536 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3537 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3538 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3539 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3540 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 3541 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 3542 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 3543 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 3544 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 3545 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 3546 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3547 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3548 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3549 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3550 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3551 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3552 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3553 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3554 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3555 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3556 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3557 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3558 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3559 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3560 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3561 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3562 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3563 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3564 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3565 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3566 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3567 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3568 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3569 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3570 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3571 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3572 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3573 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3574 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3575 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3576 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3577 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3578 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3579 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3580 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3581 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3582 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3583 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3584 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3585 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 3586 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 3587 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 3588 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3589 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3590 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3591 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3592 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3593 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3594 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3595 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3596 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3597 Amphispiza bilineata Bird Long-term Krat Exclosure
## 3598 Campylorhynchus brunneicapillus Bird Long-term Krat Exclosure
## 3599 Calamospiza melanocorys Bird Long-term Krat Exclosure
## 3600 Calamospiza melanocorys Bird Long-term Krat Exclosure
## 3601 Calamospiza melanocorys Bird Long-term Krat Exclosure
## 3602 Callipepla squamata Bird Long-term Krat Exclosure
## 3603 Reithrodontomys fulvescens Rodent Long-term Krat Exclosure
## 3604 Reithrodontomys fulvescens Rodent Long-term Krat Exclosure
## 3605 Reithrodontomys fulvescens Rodent Long-term Krat Exclosure
## 3606 Reithrodontomys fulvescens Rodent Long-term Krat Exclosure
## 3607 Reithrodontomys fulvescens Rodent Long-term Krat Exclosure
## 3608 Pipilo chlorurus Bird Long-term Krat Exclosure
## 3609 Pipilo chlorurus Bird Long-term Krat Exclosure
## 3610 Perognathus hispidus Rodent Long-term Krat Exclosure
## 3611 Perognathus hispidus Rodent Long-term Krat Exclosure
## 3612 Baiomys taylori Rodent Long-term Krat Exclosure
## 3613 Baiomys taylori Rodent Long-term Krat Exclosure
## 3614 Baiomys taylori Rodent Long-term Krat Exclosure
## 3615 Baiomys taylori Rodent Long-term Krat Exclosure
## 3616 Baiomys taylori Rodent Long-term Krat Exclosure
## 3617 Baiomys taylori Rodent Long-term Krat Exclosure
## 3618 Baiomys taylori Rodent Long-term Krat Exclosure
## 3619 Baiomys taylori Rodent Long-term Krat Exclosure
## 3620 Baiomys taylori Rodent Long-term Krat Exclosure
## 3621 Baiomys taylori Rodent Long-term Krat Exclosure
## 3622 Baiomys taylori Rodent Long-term Krat Exclosure
## 3623 Baiomys taylori Rodent Long-term Krat Exclosure
## 3624 Baiomys taylori Rodent Long-term Krat Exclosure
## 3625 Baiomys taylori Rodent Long-term Krat Exclosure
## 3626 Baiomys taylori Rodent Long-term Krat Exclosure
## 3627 Baiomys taylori Rodent Long-term Krat Exclosure
## 3628 Baiomys taylori Rodent Long-term Krat Exclosure
## 3629 Baiomys taylori Rodent Long-term Krat Exclosure
## 3630 Baiomys taylori Rodent Long-term Krat Exclosure
## 3631 Sigmodon fulviventer Rodent Long-term Krat Exclosure
## 3632 Sigmodon fulviventer Rodent Long-term Krat Exclosure
## 3633 Sigmodon fulviventer Rodent Long-term Krat Exclosure
## 3634 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3635 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3636 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3637 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3638 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3639 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3640 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3641 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3642 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3643 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3644 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3645 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3646 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3647 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3648 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3649 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3650 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3651 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3652 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3653 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3654 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3655 Sigmodon ochrognathus Rodent Long-term Krat Exclosure
## 3656 Chaetodipus intermedius Rodent Long-term Krat Exclosure
## 3657 Chaetodipus intermedius Rodent Long-term Krat Exclosure
## 3658 Chaetodipus intermedius Rodent Long-term Krat Exclosure
## 3659 Chaetodipus intermedius Rodent Long-term Krat Exclosure
## 3660 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3661 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3662 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3663 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3664 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3665 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3666 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3667 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3668 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3669 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3670 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3671 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3672 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3673 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3674 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3675 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3676 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3677 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3678 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3679 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3680 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3681 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3682 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3683 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3684 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3685 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3686 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3687 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3688 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3689 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3690 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3691 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3692 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3693 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3694 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3695 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3696 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3697 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3698 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3699 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3700 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3701 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3702 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3703 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3704 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3705 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3706 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3707 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3708 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3709 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3710 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3711 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3712 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3713 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3714 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3715 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3716 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3717 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3718 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3719 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3720 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3721 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3722 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3723 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3724 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3725 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3726 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3727 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3728 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3729 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3730 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3731 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3732 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3733 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3734 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3735 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3736 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3737 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3738 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3739 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3740 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3741 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3742 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3743 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3744 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3745 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3746 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3747 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3748 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3749 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3750 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3751 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3752 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3753 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3754 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3755 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3756 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3757 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3758 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3759 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3760 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3761 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3762 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3763 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3764 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3765 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3766 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3767 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3768 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3769 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3770 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3771 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3772 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3773 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3774 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3775 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3776 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3777 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3778 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3779 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3780 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3781 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3782 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3783 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3784 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3785 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3786 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3787 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3788 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3789 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3790 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3791 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3792 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3793 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3794 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3795 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3796 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3797 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3798 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3799 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3800 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3801 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3802 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3803 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3804 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3805 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3806 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3807 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3808 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3809 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3810 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3811 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3812 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3813 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3814 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3815 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3816 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3817 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3818 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3819 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3820 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3821 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3822 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3823 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3824 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3825 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3826 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3827 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3828 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3829 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3830 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3831 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3832 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3833 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3834 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3835 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3836 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3837 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3838 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3839 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3840 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3841 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3842 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3843 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3844 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3845 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3846 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3847 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3848 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3849 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3850 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3851 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3852 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3853 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3854 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3855 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3856 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3857 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3858 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3859 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3860 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3861 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3862 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3863 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3864 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3865 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3866 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3867 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3868 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3869 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3870 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3871 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3872 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3873 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3874 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3875 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3876 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3877 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3878 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3879 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3880 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3881 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3882 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3883 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3884 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3885 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3886 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3887 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3888 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3889 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3890 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3891 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3892 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3893 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3894 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3895 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3896 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3897 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3898 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3899 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3900 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3901 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3902 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3903 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3904 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3905 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3906 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3907 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3908 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3909 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3910 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3911 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3912 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3913 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3914 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3915 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3916 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3917 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3918 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3919 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3920 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3921 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3922 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3923 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3924 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3925 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3926 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3927 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3928 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3929 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3930 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3931 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3932 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3933 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3934 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3935 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3936 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3937 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3938 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3939 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3940 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3941 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3942 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3943 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3944 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3945 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3946 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3947 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3948 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3949 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3950 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3951 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3952 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3953 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3954 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3955 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3956 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3957 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3958 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3959 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3960 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3961 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3962 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3963 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3964 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3965 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3966 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3967 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3968 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3969 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3970 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3971 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3972 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3973 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3974 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3975 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3976 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3977 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3978 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3979 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3980 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3981 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3982 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3983 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3984 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3985 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3986 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3987 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3988 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3989 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3990 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3991 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3992 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3993 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3994 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3995 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3996 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 3997 Peromyscus leucopus Rodent Long-term Krat Exclosure
## 3998 Peromyscus leucopus Rodent Long-term Krat Exclosure
## 3999 Chaetodipus sp. Rodent Long-term Krat Exclosure
## 4000 Neotoma albigula Rodent Long-term Krat Exclosure
## 4001 Neotoma albigula Rodent Long-term Krat Exclosure
## 4002 Neotoma albigula Rodent Long-term Krat Exclosure
## 4003 Neotoma albigula Rodent Long-term Krat Exclosure
## 4004 Neotoma albigula Rodent Long-term Krat Exclosure
## 4005 Neotoma albigula Rodent Long-term Krat Exclosure
## 4006 Neotoma albigula Rodent Long-term Krat Exclosure
## 4007 Neotoma albigula Rodent Long-term Krat Exclosure
## 4008 Neotoma albigula Rodent Long-term Krat Exclosure
## 4009 Neotoma albigula Rodent Long-term Krat Exclosure
## 4010 Neotoma albigula Rodent Long-term Krat Exclosure
## 4011 Neotoma albigula Rodent Long-term Krat Exclosure
## 4012 Neotoma albigula Rodent Long-term Krat Exclosure
## 4013 Neotoma albigula Rodent Long-term Krat Exclosure
## 4014 Neotoma albigula Rodent Long-term Krat Exclosure
## 4015 Neotoma albigula Rodent Long-term Krat Exclosure
## 4016 Neotoma albigula Rodent Long-term Krat Exclosure
## 4017 Neotoma albigula Rodent Long-term Krat Exclosure
## 4018 Neotoma albigula Rodent Long-term Krat Exclosure
## 4019 Neotoma albigula Rodent Long-term Krat Exclosure
## 4020 Neotoma albigula Rodent Long-term Krat Exclosure
## 4021 Neotoma albigula Rodent Long-term Krat Exclosure
## 4022 Neotoma albigula Rodent Long-term Krat Exclosure
## 4023 Neotoma albigula Rodent Long-term Krat Exclosure
## 4024 Neotoma albigula Rodent Long-term Krat Exclosure
## 4025 Neotoma albigula Rodent Long-term Krat Exclosure
## 4026 Neotoma albigula Rodent Long-term Krat Exclosure
## 4027 Neotoma albigula Rodent Long-term Krat Exclosure
## 4028 Neotoma albigula Rodent Long-term Krat Exclosure
## 4029 Neotoma albigula Rodent Long-term Krat Exclosure
## 4030 Neotoma albigula Rodent Long-term Krat Exclosure
## 4031 Neotoma albigula Rodent Long-term Krat Exclosure
## 4032 Neotoma albigula Rodent Long-term Krat Exclosure
## 4033 Neotoma albigula Rodent Long-term Krat Exclosure
## 4034 Neotoma albigula Rodent Long-term Krat Exclosure
## 4035 Neotoma albigula Rodent Long-term Krat Exclosure
## 4036 Neotoma albigula Rodent Long-term Krat Exclosure
## 4037 Neotoma albigula Rodent Long-term Krat Exclosure
## 4038 Neotoma albigula Rodent Long-term Krat Exclosure
## 4039 Neotoma albigula Rodent Long-term Krat Exclosure
## 4040 Neotoma albigula Rodent Long-term Krat Exclosure
## 4041 Neotoma albigula Rodent Long-term Krat Exclosure
## 4042 Neotoma albigula Rodent Long-term Krat Exclosure
## 4043 Neotoma albigula Rodent Long-term Krat Exclosure
## 4044 Neotoma albigula Rodent Long-term Krat Exclosure
## 4045 Neotoma albigula Rodent Long-term Krat Exclosure
## 4046 Neotoma albigula Rodent Long-term Krat Exclosure
## 4047 Neotoma albigula Rodent Long-term Krat Exclosure
## 4048 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4049 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4050 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4051 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4052 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4053 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4054 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4055 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4056 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4057 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4058 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4059 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4060 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4061 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4062 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4063 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4064 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4065 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4066 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4067 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4068 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4069 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4070 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4071 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4072 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4073 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4074 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4075 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4076 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4077 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4078 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4079 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4080 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4081 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4082 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4083 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4084 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4085 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4086 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4087 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4088 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4089 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4090 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4091 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4092 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4093 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4094 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4095 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4096 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4097 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4098 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4099 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4100 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4101 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4102 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4103 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4104 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4105 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4106 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4107 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4108 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4109 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4110 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4111 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4112 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4113 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4114 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4115 Dipodomys merriami Rodent Long-term Krat Exclosure
## 4116 Perognathus flavus Rodent Long-term Krat Exclosure
## 4117 Perognathus flavus Rodent Long-term Krat Exclosure
## 4118 Perognathus flavus Rodent Long-term Krat Exclosure
## 4119 Perognathus flavus Rodent Long-term Krat Exclosure
## 4120 Perognathus flavus Rodent Long-term Krat Exclosure
## 4121 Perognathus flavus Rodent Long-term Krat Exclosure
## 4122 Perognathus flavus Rodent Long-term Krat Exclosure
## 4123 Perognathus flavus Rodent Long-term Krat Exclosure
## 4124 Perognathus flavus Rodent Long-term Krat Exclosure
## 4125 Perognathus flavus Rodent Long-term Krat Exclosure
## 4126 Perognathus flavus Rodent Long-term Krat Exclosure
## 4127 Perognathus flavus Rodent Long-term Krat Exclosure
## 4128 Perognathus flavus Rodent Long-term Krat Exclosure
## 4129 Perognathus flavus Rodent Long-term Krat Exclosure
## 4130 Perognathus flavus Rodent Long-term Krat Exclosure
## 4131 Perognathus flavus Rodent Long-term Krat Exclosure
## 4132 Perognathus flavus Rodent Long-term Krat Exclosure
## 4133 Perognathus flavus Rodent Long-term Krat Exclosure
## 4134 Perognathus flavus Rodent Long-term Krat Exclosure
## 4135 Perognathus flavus Rodent Long-term Krat Exclosure
## 4136 Perognathus flavus Rodent Long-term Krat Exclosure
## 4137 Perognathus flavus Rodent Long-term Krat Exclosure
## 4138 Perognathus flavus Rodent Long-term Krat Exclosure
## 4139 Perognathus flavus Rodent Long-term Krat Exclosure
## 4140 Perognathus flavus Rodent Long-term Krat Exclosure
## 4141 Perognathus flavus Rodent Long-term Krat Exclosure
## 4142 Perognathus flavus Rodent Long-term Krat Exclosure
## 4143 Perognathus flavus Rodent Long-term Krat Exclosure
## 4144 Perognathus flavus Rodent Long-term Krat Exclosure
## 4145 Perognathus flavus Rodent Long-term Krat Exclosure
## 4146 Perognathus flavus Rodent Long-term Krat Exclosure
## 4147 Perognathus flavus Rodent Long-term Krat Exclosure
## 4148 Perognathus flavus Rodent Long-term Krat Exclosure
## 4149 Perognathus flavus Rodent Long-term Krat Exclosure
## 4150 Perognathus flavus Rodent Long-term Krat Exclosure
## 4151 Perognathus flavus Rodent Long-term Krat Exclosure
## 4152 Perognathus flavus Rodent Long-term Krat Exclosure
## 4153 Perognathus flavus Rodent Long-term Krat Exclosure
## 4154 Perognathus flavus Rodent Long-term Krat Exclosure
## 4155 Perognathus flavus Rodent Long-term Krat Exclosure
## 4156 Perognathus flavus Rodent Long-term Krat Exclosure
## 4157 Perognathus flavus Rodent Long-term Krat Exclosure
## 4158 Perognathus flavus Rodent Long-term Krat Exclosure
## 4159 Perognathus flavus Rodent Long-term Krat Exclosure
## 4160 Perognathus flavus Rodent Long-term Krat Exclosure
## 4161 Perognathus flavus Rodent Long-term Krat Exclosure
## 4162 Perognathus flavus Rodent Long-term Krat Exclosure
## 4163 Perognathus flavus Rodent Long-term Krat Exclosure
## 4164 Perognathus flavus Rodent Long-term Krat Exclosure
## 4165 Perognathus flavus Rodent Long-term Krat Exclosure
## 4166 Perognathus flavus Rodent Long-term Krat Exclosure
## 4167 Perognathus flavus Rodent Long-term Krat Exclosure
## 4168 Perognathus flavus Rodent Long-term Krat Exclosure
## 4169 Perognathus flavus Rodent Long-term Krat Exclosure
## 4170 Perognathus flavus Rodent Long-term Krat Exclosure
## 4171 Perognathus flavus Rodent Long-term Krat Exclosure
## 4172 Perognathus flavus Rodent Long-term Krat Exclosure
## 4173 Perognathus flavus Rodent Long-term Krat Exclosure
## 4174 Perognathus flavus Rodent Long-term Krat Exclosure
## 4175 Perognathus flavus Rodent Long-term Krat Exclosure
## 4176 Perognathus flavus Rodent Long-term Krat Exclosure
## 4177 Perognathus flavus Rodent Long-term Krat Exclosure
## 4178 Perognathus flavus Rodent Long-term Krat Exclosure
## 4179 Perognathus flavus Rodent Long-term Krat Exclosure
## 4180 Perognathus flavus Rodent Long-term Krat Exclosure
## 4181 Perognathus flavus Rodent Long-term Krat Exclosure
## 4182 Perognathus flavus Rodent Long-term Krat Exclosure
## 4183 Perognathus flavus Rodent Long-term Krat Exclosure
## 4184 Perognathus flavus Rodent Long-term Krat Exclosure
## 4185 Perognathus flavus Rodent Long-term Krat Exclosure
## 4186 Perognathus flavus Rodent Long-term Krat Exclosure
## 4187 Perognathus flavus Rodent Long-term Krat Exclosure
## 4188 Perognathus flavus Rodent Long-term Krat Exclosure
## 4189 Perognathus flavus Rodent Long-term Krat Exclosure
## 4190 Perognathus flavus Rodent Long-term Krat Exclosure
## 4191 Perognathus flavus Rodent Long-term Krat Exclosure
## 4192 Perognathus flavus Rodent Long-term Krat Exclosure
## 4193 Perognathus flavus Rodent Long-term Krat Exclosure
## 4194 Perognathus flavus Rodent Long-term Krat Exclosure
## 4195 Perognathus flavus Rodent Long-term Krat Exclosure
## 4196 Perognathus flavus Rodent Long-term Krat Exclosure
## 4197 Perognathus flavus Rodent Long-term Krat Exclosure
## 4198 Perognathus flavus Rodent Long-term Krat Exclosure
## 4199 Perognathus flavus Rodent Long-term Krat Exclosure
## 4200 Perognathus flavus Rodent Long-term Krat Exclosure
## 4201 Perognathus flavus Rodent Long-term Krat Exclosure
## 4202 Perognathus flavus Rodent Long-term Krat Exclosure
## 4203 Perognathus flavus Rodent Long-term Krat Exclosure
## 4204 Perognathus flavus Rodent Long-term Krat Exclosure
## 4205 Perognathus flavus Rodent Long-term Krat Exclosure
## 4206 Perognathus flavus Rodent Long-term Krat Exclosure
## 4207 Perognathus flavus Rodent Long-term Krat Exclosure
## 4208 Perognathus flavus Rodent Long-term Krat Exclosure
## 4209 Perognathus flavus Rodent Long-term Krat Exclosure
## 4210 Perognathus flavus Rodent Long-term Krat Exclosure
## 4211 Perognathus flavus Rodent Long-term Krat Exclosure
## 4212 Perognathus flavus Rodent Long-term Krat Exclosure
## 4213 Perognathus flavus Rodent Long-term Krat Exclosure
## 4214 Perognathus flavus Rodent Long-term Krat Exclosure
## 4215 Perognathus flavus Rodent Long-term Krat Exclosure
## 4216 Perognathus flavus Rodent Long-term Krat Exclosure
## 4217 Perognathus flavus Rodent Long-term Krat Exclosure
## 4218 Perognathus flavus Rodent Long-term Krat Exclosure
## 4219 Perognathus flavus Rodent Long-term Krat Exclosure
## 4220 Perognathus flavus Rodent Long-term Krat Exclosure
## 4221 Perognathus flavus Rodent Long-term Krat Exclosure
## 4222 Perognathus flavus Rodent Long-term Krat Exclosure
## 4223 Perognathus flavus Rodent Long-term Krat Exclosure
## 4224 Perognathus flavus Rodent Long-term Krat Exclosure
## 4225 Perognathus flavus Rodent Long-term Krat Exclosure
## 4226 Perognathus flavus Rodent Long-term Krat Exclosure
## 4227 Perognathus flavus Rodent Long-term Krat Exclosure
## 4228 Perognathus flavus Rodent Long-term Krat Exclosure
## 4229 Perognathus flavus Rodent Long-term Krat Exclosure
## 4230 Perognathus flavus Rodent Long-term Krat Exclosure
## 4231 Perognathus flavus Rodent Long-term Krat Exclosure
## 4232 Perognathus flavus Rodent Long-term Krat Exclosure
## 4233 Perognathus flavus Rodent Long-term Krat Exclosure
## 4234 Perognathus flavus Rodent Long-term Krat Exclosure
## 4235 Perognathus flavus Rodent Long-term Krat Exclosure
## 4236 Perognathus flavus Rodent Long-term Krat Exclosure
## 4237 Perognathus flavus Rodent Long-term Krat Exclosure
## 4238 Perognathus flavus Rodent Long-term Krat Exclosure
## 4239 Perognathus flavus Rodent Long-term Krat Exclosure
## 4240 Perognathus flavus Rodent Long-term Krat Exclosure
## 4241 Perognathus flavus Rodent Long-term Krat Exclosure
## 4242 Perognathus flavus Rodent Long-term Krat Exclosure
## 4243 Perognathus flavus Rodent Long-term Krat Exclosure
## 4244 Perognathus flavus Rodent Long-term Krat Exclosure
## 4245 Perognathus flavus Rodent Long-term Krat Exclosure
## 4246 Perognathus flavus Rodent Long-term Krat Exclosure
## 4247 Perognathus flavus Rodent Long-term Krat Exclosure
## 4248 Perognathus flavus Rodent Long-term Krat Exclosure
## 4249 Perognathus flavus Rodent Long-term Krat Exclosure
## 4250 Perognathus flavus Rodent Long-term Krat Exclosure
## 4251 Perognathus flavus Rodent Long-term Krat Exclosure
## 4252 Perognathus flavus Rodent Long-term Krat Exclosure
## 4253 Perognathus flavus Rodent Long-term Krat Exclosure
## 4254 Perognathus flavus Rodent Long-term Krat Exclosure
## 4255 Perognathus flavus Rodent Long-term Krat Exclosure
## 4256 Perognathus flavus Rodent Long-term Krat Exclosure
## 4257 Perognathus flavus Rodent Long-term Krat Exclosure
## 4258 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4259 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4260 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4261 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4262 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4263 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4264 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4265 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4266 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4267 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4268 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4269 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4270 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4271 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4272 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4273 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4274 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4275 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4276 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4277 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4278 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4279 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4280 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4281 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4282 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4283 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4284 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4285 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4286 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4287 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4288 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4289 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4290 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4291 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4292 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4293 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4294 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4295 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4296 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4297 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4298 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4299 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4300 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4301 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4302 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4303 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4304 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4305 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4306 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4307 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4308 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4309 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4310 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4311 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4312 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4313 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4314 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4315 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4316 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4317 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4318 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4319 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4320 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4321 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4322 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4323 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4324 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4325 Peromyscus eremicus Rodent Long-term Krat Exclosure
## 4326 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 4327 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 4328 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 4329 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 4330 Dipodomys spectabilis Rodent Long-term Krat Exclosure
## 4331 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4332 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4333 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4334 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4335 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4336 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4337 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4338 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4339 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4340 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4341 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4342 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4343 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4344 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4345 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4346 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4347 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4348 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4349 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4350 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4351 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4352 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4353 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4354 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4355 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4356 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4357 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4358 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4359 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4360 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4361 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4362 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4363 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4364 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4365 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4366 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4367 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4368 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4369 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4370 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4371 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4372 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4373 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4374 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4375 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4376 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4377 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4378 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4379 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4380 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4381 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4382 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4383 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4384 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4385 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4386 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4387 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4388 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4389 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4390 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4391 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4392 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4393 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4394 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4395 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4396 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4397 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4398 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4399 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4400 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4401 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4402 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4403 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4404 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4405 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4406 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4407 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4408 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4409 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4410 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4411 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4412 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4413 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4414 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4415 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4416 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4417 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4418 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4419 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4420 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4421 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4422 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4423 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4424 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4425 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4426 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4427 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4428 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4429 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4430 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4431 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4432 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4433 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4434 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4435 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4436 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4437 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4438 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4439 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4440 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4441 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4442 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4443 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4444 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4445 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4446 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4447 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4448 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4449 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4450 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4451 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4452 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4453 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4454 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4455 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4456 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4457 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4458 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4459 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4460 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4461 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4462 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4463 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4464 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4465 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4466 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4467 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4468 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4469 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4470 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4471 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4472 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4473 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4474 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4475 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4476 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4477 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4478 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4479 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4480 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4481 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4482 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4483 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4484 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4485 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4486 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4487 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4488 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4489 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4490 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4491 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4492 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4493 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4494 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4495 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4496 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4497 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4498 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4499 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4500 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4501 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4502 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4503 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4504 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4505 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4506 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4507 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4508 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4509 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4510 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4511 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4512 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4513 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4514 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4515 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4516 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4517 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4518 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4519 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4520 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4521 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4522 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4523 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4524 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4525 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4526 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4527 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4528 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4529 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4530 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4531 Chaetodipus penicillatus Rodent Long-term Krat Exclosure
## 4532 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 4533 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 4534 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 4535 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 4536 Sigmodon hispidus Rodent Long-term Krat Exclosure
## 4537 Onychomys torridus Rodent Long-term Krat Exclosure
## 4538 Onychomys torridus Rodent Long-term Krat Exclosure
## 4539 Onychomys torridus Rodent Long-term Krat Exclosure
## 4540 Onychomys torridus Rodent Long-term Krat Exclosure
## 4541 Onychomys torridus Rodent Long-term Krat Exclosure
## 4542 Onychomys torridus Rodent Long-term Krat Exclosure
## 4543 Onychomys torridus Rodent Long-term Krat Exclosure
## 4544 Onychomys torridus Rodent Long-term Krat Exclosure
## 4545 Onychomys torridus Rodent Long-term Krat Exclosure
## 4546 Onychomys torridus Rodent Long-term Krat Exclosure
## 4547 Onychomys torridus Rodent Long-term Krat Exclosure
## 4548 Onychomys torridus Rodent Long-term Krat Exclosure
## 4549 Onychomys torridus Rodent Long-term Krat Exclosure
## 4550 Onychomys torridus Rodent Long-term Krat Exclosure
## 4551 Onychomys torridus Rodent Long-term Krat Exclosure
## 4552 Onychomys torridus Rodent Long-term Krat Exclosure
## 4553 Onychomys torridus Rodent Long-term Krat Exclosure
## 4554 Onychomys torridus Rodent Long-term Krat Exclosure
## 4555 Onychomys torridus Rodent Long-term Krat Exclosure
## 4556 Onychomys torridus Rodent Long-term Krat Exclosure
## 4557 Onychomys torridus Rodent Long-term Krat Exclosure
## 4558 Onychomys torridus Rodent Long-term Krat Exclosure
## 4559 Onychomys torridus Rodent Long-term Krat Exclosure
## 4560 Onychomys torridus Rodent Long-term Krat Exclosure
## 4561 Onychomys torridus Rodent Long-term Krat Exclosure
## 4562 Onychomys torridus Rodent Long-term Krat Exclosure
## 4563 Onychomys torridus Rodent Long-term Krat Exclosure
## 4564 Onychomys torridus Rodent Long-term Krat Exclosure
## 4565 Onychomys torridus Rodent Long-term Krat Exclosure
## 4566 Onychomys torridus Rodent Long-term Krat Exclosure
## 4567 Onychomys torridus Rodent Long-term Krat Exclosure
## 4568 Onychomys torridus Rodent Long-term Krat Exclosure
## 4569 Onychomys torridus Rodent Long-term Krat Exclosure
## 4570 Onychomys torridus Rodent Long-term Krat Exclosure
## 4571 Onychomys torridus Rodent Long-term Krat Exclosure
## 4572 Onychomys torridus Rodent Long-term Krat Exclosure
## 4573 Onychomys torridus Rodent Long-term Krat Exclosure
## 4574 Onychomys torridus Rodent Long-term Krat Exclosure
## 4575 Onychomys torridus Rodent Long-term Krat Exclosure
## 4576 Onychomys torridus Rodent Long-term Krat Exclosure
## 4577 Onychomys torridus Rodent Long-term Krat Exclosure
## 4578 Onychomys torridus Rodent Long-term Krat Exclosure
## 4579 Onychomys torridus Rodent Long-term Krat Exclosure
## 4580 Onychomys torridus Rodent Long-term Krat Exclosure
## 4581 Onychomys torridus Rodent Long-term Krat Exclosure
## 4582 Onychomys torridus Rodent Long-term Krat Exclosure
## 4583 Onychomys torridus Rodent Long-term Krat Exclosure
## 4584 Onychomys torridus Rodent Long-term Krat Exclosure
## 4585 Onychomys torridus Rodent Long-term Krat Exclosure
## 4586 Onychomys torridus Rodent Long-term Krat Exclosure
## 4587 Onychomys torridus Rodent Long-term Krat Exclosure
## 4588 Onychomys torridus Rodent Long-term Krat Exclosure
## 4589 Onychomys torridus Rodent Long-term Krat Exclosure
## 4590 Onychomys torridus Rodent Long-term Krat Exclosure
## 4591 Onychomys torridus Rodent Long-term Krat Exclosure
## 4592 Onychomys torridus Rodent Long-term Krat Exclosure
## 4593 Onychomys torridus Rodent Long-term Krat Exclosure
## 4594 Onychomys torridus Rodent Long-term Krat Exclosure
## 4595 Onychomys torridus Rodent Long-term Krat Exclosure
## 4596 Onychomys torridus Rodent Long-term Krat Exclosure
## 4597 Onychomys torridus Rodent Long-term Krat Exclosure
## 4598 Onychomys torridus Rodent Long-term Krat Exclosure
## 4599 Onychomys torridus Rodent Long-term Krat Exclosure
## 4600 Onychomys torridus Rodent Long-term Krat Exclosure
## 4601 Onychomys torridus Rodent Long-term Krat Exclosure
## 4602 Onychomys torridus Rodent Long-term Krat Exclosure
## 4603 Onychomys torridus Rodent Long-term Krat Exclosure
## 4604 Onychomys torridus Rodent Long-term Krat Exclosure
## 4605 Onychomys torridus Rodent Long-term Krat Exclosure
## 4606 Onychomys torridus Rodent Long-term Krat Exclosure
## 4607 Onychomys torridus Rodent Long-term Krat Exclosure
## 4608 Onychomys torridus Rodent Long-term Krat Exclosure
## 4609 Onychomys torridus Rodent Long-term Krat Exclosure
## 4610 Onychomys torridus Rodent Long-term Krat Exclosure
## 4611 Onychomys torridus Rodent Long-term Krat Exclosure
## 4612 Onychomys torridus Rodent Long-term Krat Exclosure
## 4613 Onychomys torridus Rodent Long-term Krat Exclosure
## 4614 Onychomys torridus Rodent Long-term Krat Exclosure
## 4615 Onychomys torridus Rodent Long-term Krat Exclosure
## 4616 Onychomys torridus Rodent Long-term Krat Exclosure
## 4617 Onychomys torridus Rodent Long-term Krat Exclosure
## 4618 Onychomys torridus Rodent Long-term Krat Exclosure
## 4619 Onychomys torridus Rodent Long-term Krat Exclosure
## 4620 Dipodomys ordii Rodent Long-term Krat Exclosure
## 4621 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 4622 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 4623 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 4624 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 4625 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 4626 Spermophilus spilosoma Rodent Long-term Krat Exclosure
## 4627 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4628 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4629 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4630 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4631 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4632 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4633 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4634 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4635 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4636 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4637 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4638 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4639 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4640 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4641 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4642 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4643 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4644 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4645 Onychomys leucogaster Rodent Long-term Krat Exclosure
## 4646 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4647 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4648 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4649 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4650 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4651 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4652 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4653 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4654 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4655 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4656 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4657 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4658 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4659 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4660 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4661 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4662 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4663 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4664 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4665 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4666 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4667 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4668 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4669 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4670 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4671 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4672 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4673 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4674 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4675 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4676 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4677 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4678 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4679 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4680 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4681 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4682 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4683 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4684 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4685 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4686 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4687 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4688 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4689 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4690 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4691 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4692 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4693 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4694 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4695 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4696 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4697 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4698 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4699 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4700 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4701 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4702 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4703 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4704 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4705 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4706 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4707 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4708 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4709 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4710 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4711 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4712 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4713 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4714 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4715 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4716 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4717 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4718 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4719 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4720 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4721 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4722 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4723 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4724 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4725 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4726 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4727 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4728 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4729 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4730 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4731 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4732 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4733 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4734 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4735 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4736 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4737 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4738 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4739 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4740 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4741 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4742 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4743 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4744 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4745 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4746 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4747 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4748 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4749 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4750 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4751 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4752 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4753 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4754 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4755 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4756 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4757 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4758 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4759 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4760 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4761 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4762 Reithrodontomys megalotis Rodent Long-term Krat Exclosure
## 4763 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 4764 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 4765 Sylvilagus audubonii Rabbit Long-term Krat Exclosure
## 4766 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4767 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4768 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4769 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4770 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4771 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4772 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4773 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4774 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4775 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4776 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4777 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4778 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4779 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4780 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4781 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4782 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4783 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4784 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4785 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4786 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4787 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4788 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4789 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4790 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4791 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4792 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4793 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4794 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4795 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4796 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4797 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4798 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4799 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4800 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4801 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4802 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4803 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4804 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4805 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4806 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4807 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4808 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4809 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4810 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4811 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4812 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4813 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4814 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4815 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4816 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4817 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4818 Peromyscus maniculatus Rodent Long-term Krat Exclosure
## 4819 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4820 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4821 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4822 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4823 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4824 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4825 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4826 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4827 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4828 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4829 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4830 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4831 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4832 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4833 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4834 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4835 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4836 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4837 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4838 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4839 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4840 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4841 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4842 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4843 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4844 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4845 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4846 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4847 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4848 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4849 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4850 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4851 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4852 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4853 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4854 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4855 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4856 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4857 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4858 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4859 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4860 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4861 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4862 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4863 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4864 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4865 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4866 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4867 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4868 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4869 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4870 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4871 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4872 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4873 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4874 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4875 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4876 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4877 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4878 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4879 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4880 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4881 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4882 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4883 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4884 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4885 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4886 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4887 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4888 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4889 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4890 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4891 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4892 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4893 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4894 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4895 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4896 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4897 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4898 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4899 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4900 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4901 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4902 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4903 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4904 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4905 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4906 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4907 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4908 Ammospermophilus harrisi Rodent Long-term Krat Exclosure
## 4909 Dipodomys sp. Rodent Long-term Krat Exclosure
## 4910 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4911 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4912 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4913 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4914 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4915 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4916 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4917 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4918 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4919 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4920 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4921 Amphispiza bilineata Bird Long-term Krat Exclosure
## 4922 Campylorhynchus brunneicapillus Bird Long-term Krat Exclosure
## 4923 Campylorhynchus brunneicapillus Bird Long-term Krat Exclosure
## 4924 Campylorhynchus brunneicapillus Bird Long-term Krat Exclosure
## 4925 Campylorhynchus brunneicapillus Bird Long-term Krat Exclosure
## 4926 Calamospiza melanocorys Bird Long-term Krat Exclosure
## 4927 Reithrodontomys fulvescens Rodent Long-term Krat Exclosure
## 4928 Pipilo chlorurus Bird Long-term Krat Exclosure
## 4929 Pipilo chlorurus Bird Long-term Krat Exclosure
## 4930 Pipilo chlorurus Bird Long-term Krat Exclosure
## 4931 Pipilo chlorurus Bird Long-term Krat Exclosure
## 4932 Pipilo chlorurus Bird Long-term Krat Exclosure
## 4933 Crotalus viridis Reptile Long-term Krat Exclosure
## 4934 Sigmodon fulviventer Rodent Long-term Krat Exclosure
## 4935 Sigmodon fulviventer Rodent Long-term Krat Exclosure
## 4936 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4937 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4938 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4939 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4940 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4941 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4942 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4943 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4944 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4945 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4946 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4947 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4948 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4949 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4950 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4951 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4952 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4953 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4954 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4955 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4956 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4957 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4958 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4959 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4960 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4961 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4962 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4963 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4964 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4965 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4966 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4967 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4968 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4969 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4970 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4971 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4972 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4973 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4974 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4975 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4976 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4977 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4978 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4979 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4980 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4981 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4982 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4983 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4984 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4985 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4986 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4987 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4988 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4989 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4990 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4991 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4992 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4993 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4994 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4995 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4996 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4997 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4998 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 4999 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5000 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5001 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5002 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5003 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5004 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5005 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5006 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5007 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5008 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5009 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5010 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5011 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5012 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5013 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5014 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5015 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5016 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5017 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5018 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5019 Chaetodipus baileyi Rodent Long-term Krat Exclosure
## 5020 Peromyscus leucopus Rodent Long-term Krat Exclosure
## 5021 Peromyscus leucopus Rodent Long-term Krat Exclosure
## 5022 Peromyscus leucopus Rodent Long-term Krat Exclosure
## 5023 Sparrow sp. Bird Long-term Krat Exclosure
## 5024 Neotoma albigula Rodent Control
## 5025 Neotoma albigula Rodent Control
## 5026 Neotoma albigula Rodent Control
## 5027 Neotoma albigula Rodent Control
## 5028 Neotoma albigula Rodent Control
## 5029 Neotoma albigula Rodent Control
## 5030 Neotoma albigula Rodent Control
## 5031 Neotoma albigula Rodent Control
## 5032 Neotoma albigula Rodent Control
## 5033 Neotoma albigula Rodent Control
## 5034 Neotoma albigula Rodent Control
## 5035 Neotoma albigula Rodent Control
## 5036 Neotoma albigula Rodent Control
## 5037 Neotoma albigula Rodent Control
## 5038 Neotoma albigula Rodent Control
## 5039 Neotoma albigula Rodent Control
## 5040 Neotoma albigula Rodent Control
## 5041 Neotoma albigula Rodent Control
## 5042 Neotoma albigula Rodent Control
## 5043 Neotoma albigula Rodent Control
## 5044 Neotoma albigula Rodent Control
## 5045 Neotoma albigula Rodent Control
## 5046 Neotoma albigula Rodent Control
## 5047 Neotoma albigula Rodent Control
## 5048 Neotoma albigula Rodent Control
## 5049 Neotoma albigula Rodent Control
## 5050 Neotoma albigula Rodent Control
## 5051 Neotoma albigula Rodent Control
## 5052 Neotoma albigula Rodent Control
## 5053 Neotoma albigula Rodent Control
## 5054 Neotoma albigula Rodent Control
## 5055 Neotoma albigula Rodent Control
## 5056 Neotoma albigula Rodent Control
## 5057 Neotoma albigula Rodent Control
## 5058 Neotoma albigula Rodent Control
## 5059 Neotoma albigula Rodent Control
## 5060 Neotoma albigula Rodent Control
## 5061 Neotoma albigula Rodent Control
## 5062 Neotoma albigula Rodent Control
## 5063 Neotoma albigula Rodent Control
## 5064 Neotoma albigula Rodent Control
## 5065 Neotoma albigula Rodent Control
## 5066 Neotoma albigula Rodent Control
## 5067 Neotoma albigula Rodent Control
## 5068 Neotoma albigula Rodent Control
## 5069 Neotoma albigula Rodent Control
## 5070 Neotoma albigula Rodent Control
## 5071 Neotoma albigula Rodent Control
## 5072 Neotoma albigula Rodent Control
## 5073 Neotoma albigula Rodent Control
## 5074 Neotoma albigula Rodent Control
## 5075 Neotoma albigula Rodent Control
## 5076 Neotoma albigula Rodent Control
## 5077 Neotoma albigula Rodent Control
## 5078 Neotoma albigula Rodent Control
## 5079 Neotoma albigula Rodent Control
## 5080 Neotoma albigula Rodent Control
## 5081 Neotoma albigula Rodent Control
## 5082 Neotoma albigula Rodent Control
## 5083 Neotoma albigula Rodent Control
## 5084 Neotoma albigula Rodent Control
## 5085 Neotoma albigula Rodent Control
## 5086 Neotoma albigula Rodent Control
## 5087 Neotoma albigula Rodent Control
## 5088 Neotoma albigula Rodent Control
## 5089 Neotoma albigula Rodent Control
## 5090 Neotoma albigula Rodent Control
## 5091 Neotoma albigula Rodent Control
## 5092 Neotoma albigula Rodent Control
## 5093 Neotoma albigula Rodent Control
## 5094 Neotoma albigula Rodent Control
## 5095 Neotoma albigula Rodent Control
## 5096 Neotoma albigula Rodent Control
## 5097 Neotoma albigula Rodent Control
## 5098 Neotoma albigula Rodent Control
## 5099 Neotoma albigula Rodent Control
## 5100 Neotoma albigula Rodent Control
## 5101 Neotoma albigula Rodent Control
## 5102 Neotoma albigula Rodent Control
## 5103 Neotoma albigula Rodent Control
## 5104 Neotoma albigula Rodent Control
## 5105 Neotoma albigula Rodent Control
## 5106 Neotoma albigula Rodent Control
## 5107 Neotoma albigula Rodent Control
## 5108 Neotoma albigula Rodent Control
## 5109 Neotoma albigula Rodent Control
## 5110 Neotoma albigula Rodent Control
## 5111 Neotoma albigula Rodent Control
## 5112 Neotoma albigula Rodent Control
## 5113 Neotoma albigula Rodent Control
## 5114 Neotoma albigula Rodent Control
## 5115 Neotoma albigula Rodent Control
## 5116 Neotoma albigula Rodent Control
## 5117 Neotoma albigula Rodent Control
## 5118 Neotoma albigula Rodent Control
## 5119 Neotoma albigula Rodent Control
## 5120 Neotoma albigula Rodent Control
## 5121 Neotoma albigula Rodent Control
## 5122 Neotoma albigula Rodent Control
## 5123 Neotoma albigula Rodent Control
## 5124 Neotoma albigula Rodent Control
## 5125 Neotoma albigula Rodent Control
## 5126 Neotoma albigula Rodent Control
## 5127 Neotoma albigula Rodent Control
## 5128 Neotoma albigula Rodent Control
## 5129 Neotoma albigula Rodent Control
## 5130 Dipodomys merriami Rodent Control
## 5131 Dipodomys merriami Rodent Control
## 5132 Dipodomys merriami Rodent Control
## 5133 Dipodomys merriami Rodent Control
## 5134 Dipodomys merriami Rodent Control
## 5135 Dipodomys merriami Rodent Control
## 5136 Dipodomys merriami Rodent Control
## 5137 Dipodomys merriami Rodent Control
## 5138 Dipodomys merriami Rodent Control
## 5139 Dipodomys merriami Rodent Control
## 5140 Dipodomys merriami Rodent Control
## 5141 Dipodomys merriami Rodent Control
## 5142 Dipodomys merriami Rodent Control
## 5143 Dipodomys merriami Rodent Control
## 5144 Dipodomys merriami Rodent Control
## 5145 Dipodomys merriami Rodent Control
## 5146 Dipodomys merriami Rodent Control
## 5147 Dipodomys merriami Rodent Control
## 5148 Dipodomys merriami Rodent Control
## 5149 Dipodomys merriami Rodent Control
## 5150 Dipodomys merriami Rodent Control
## 5151 Dipodomys merriami Rodent Control
## 5152 Dipodomys merriami Rodent Control
## 5153 Dipodomys merriami Rodent Control
## 5154 Dipodomys merriami Rodent Control
## 5155 Dipodomys merriami Rodent Control
## 5156 Dipodomys merriami Rodent Control
## 5157 Dipodomys merriami Rodent Control
## 5158 Dipodomys merriami Rodent Control
## 5159 Dipodomys merriami Rodent Control
## 5160 Dipodomys merriami Rodent Control
## 5161 Dipodomys merriami Rodent Control
## 5162 Dipodomys merriami Rodent Control
## 5163 Dipodomys merriami Rodent Control
## 5164 Dipodomys merriami Rodent Control
## 5165 Dipodomys merriami Rodent Control
## 5166 Dipodomys merriami Rodent Control
## 5167 Dipodomys merriami Rodent Control
## 5168 Dipodomys merriami Rodent Control
## 5169 Dipodomys merriami Rodent Control
## 5170 Dipodomys merriami Rodent Control
## 5171 Dipodomys merriami Rodent Control
## 5172 Dipodomys merriami Rodent Control
## 5173 Dipodomys merriami Rodent Control
## 5174 Dipodomys merriami Rodent Control
## 5175 Dipodomys merriami Rodent Control
## 5176 Dipodomys merriami Rodent Control
## 5177 Dipodomys merriami Rodent Control
## 5178 Dipodomys merriami Rodent Control
## 5179 Dipodomys merriami Rodent Control
## 5180 Dipodomys merriami Rodent Control
## 5181 Dipodomys merriami Rodent Control
## 5182 Dipodomys merriami Rodent Control
## 5183 Dipodomys merriami Rodent Control
## 5184 Dipodomys merriami Rodent Control
## 5185 Dipodomys merriami Rodent Control
## 5186 Dipodomys merriami Rodent Control
## 5187 Dipodomys merriami Rodent Control
## 5188 Dipodomys merriami Rodent Control
## 5189 Dipodomys merriami Rodent Control
## 5190 Dipodomys merriami Rodent Control
## 5191 Dipodomys merriami Rodent Control
## 5192 Dipodomys merriami Rodent Control
## 5193 Dipodomys merriami Rodent Control
## 5194 Dipodomys merriami Rodent Control
## 5195 Dipodomys merriami Rodent Control
## 5196 Dipodomys merriami Rodent Control
## 5197 Dipodomys merriami Rodent Control
## 5198 Dipodomys merriami Rodent Control
## 5199 Dipodomys merriami Rodent Control
## 5200 Dipodomys merriami Rodent Control
## 5201 Dipodomys merriami Rodent Control
## 5202 Dipodomys merriami Rodent Control
## 5203 Dipodomys merriami Rodent Control
## 5204 Dipodomys merriami Rodent Control
## 5205 Dipodomys merriami Rodent Control
## 5206 Dipodomys merriami Rodent Control
## 5207 Dipodomys merriami Rodent Control
## 5208 Dipodomys merriami Rodent Control
## 5209 Dipodomys merriami Rodent Control
## 5210 Dipodomys merriami Rodent Control
## 5211 Dipodomys merriami Rodent Control
## 5212 Dipodomys merriami Rodent Control
## 5213 Dipodomys merriami Rodent Control
## 5214 Dipodomys merriami Rodent Control
## 5215 Dipodomys merriami Rodent Control
## 5216 Dipodomys merriami Rodent Control
## 5217 Dipodomys merriami Rodent Control
## 5218 Dipodomys merriami Rodent Control
## 5219 Dipodomys merriami Rodent Control
## 5220 Dipodomys merriami Rodent Control
## 5221 Dipodomys merriami Rodent Control
## 5222 Dipodomys merriami Rodent Control
## 5223 Dipodomys merriami Rodent Control
## 5224 Dipodomys merriami Rodent Control
## 5225 Dipodomys merriami Rodent Control
## 5226 Dipodomys merriami Rodent Control
## 5227 Dipodomys merriami Rodent Control
## 5228 Dipodomys merriami Rodent Control
## 5229 Dipodomys merriami Rodent Control
## 5230 Dipodomys merriami Rodent Control
## 5231 Dipodomys merriami Rodent Control
## 5232 Dipodomys merriami Rodent Control
## 5233 Dipodomys merriami Rodent Control
## 5234 Dipodomys merriami Rodent Control
## 5235 Dipodomys merriami Rodent Control
## 5236 Dipodomys merriami Rodent Control
## 5237 Dipodomys merriami Rodent Control
## 5238 Dipodomys merriami Rodent Control
## 5239 Dipodomys merriami Rodent Control
## 5240 Dipodomys merriami Rodent Control
## 5241 Dipodomys merriami Rodent Control
## 5242 Dipodomys merriami Rodent Control
## 5243 Dipodomys merriami Rodent Control
## 5244 Dipodomys merriami Rodent Control
## 5245 Dipodomys merriami Rodent Control
## 5246 Dipodomys merriami Rodent Control
## 5247 Dipodomys merriami Rodent Control
## 5248 Dipodomys merriami Rodent Control
## 5249 Dipodomys merriami Rodent Control
## 5250 Dipodomys merriami Rodent Control
## 5251 Dipodomys merriami Rodent Control
## 5252 Dipodomys merriami Rodent Control
## 5253 Dipodomys merriami Rodent Control
## 5254 Dipodomys merriami Rodent Control
## 5255 Dipodomys merriami Rodent Control
## 5256 Dipodomys merriami Rodent Control
## 5257 Dipodomys merriami Rodent Control
## 5258 Dipodomys merriami Rodent Control
## 5259 Dipodomys merriami Rodent Control
## 5260 Dipodomys merriami Rodent Control
## 5261 Dipodomys merriami Rodent Control
## 5262 Dipodomys merriami Rodent Control
## 5263 Dipodomys merriami Rodent Control
## 5264 Dipodomys merriami Rodent Control
## 5265 Dipodomys merriami Rodent Control
## 5266 Dipodomys merriami Rodent Control
## 5267 Dipodomys merriami Rodent Control
## 5268 Dipodomys merriami Rodent Control
## 5269 Dipodomys merriami Rodent Control
## 5270 Dipodomys merriami Rodent Control
## 5271 Dipodomys merriami Rodent Control
## 5272 Dipodomys merriami Rodent Control
## 5273 Dipodomys merriami Rodent Control
## 5274 Dipodomys merriami Rodent Control
## 5275 Dipodomys merriami Rodent Control
## 5276 Dipodomys merriami Rodent Control
## 5277 Dipodomys merriami Rodent Control
## 5278 Dipodomys merriami Rodent Control
## 5279 Dipodomys merriami Rodent Control
## 5280 Dipodomys merriami Rodent Control
## 5281 Dipodomys merriami Rodent Control
## 5282 Dipodomys merriami Rodent Control
## 5283 Dipodomys merriami Rodent Control
## 5284 Dipodomys merriami Rodent Control
## 5285 Dipodomys merriami Rodent Control
## 5286 Dipodomys merriami Rodent Control
## 5287 Dipodomys merriami Rodent Control
## 5288 Dipodomys merriami Rodent Control
## 5289 Dipodomys merriami Rodent Control
## 5290 Dipodomys merriami Rodent Control
## 5291 Dipodomys merriami Rodent Control
## 5292 Dipodomys merriami Rodent Control
## 5293 Dipodomys merriami Rodent Control
## 5294 Dipodomys merriami Rodent Control
## 5295 Dipodomys merriami Rodent Control
## 5296 Dipodomys merriami Rodent Control
## 5297 Dipodomys merriami Rodent Control
## 5298 Dipodomys merriami Rodent Control
## 5299 Dipodomys merriami Rodent Control
## 5300 Dipodomys merriami Rodent Control
## 5301 Dipodomys merriami Rodent Control
## 5302 Dipodomys merriami Rodent Control
## 5303 Dipodomys merriami Rodent Control
## 5304 Dipodomys merriami Rodent Control
## 5305 Dipodomys merriami Rodent Control
## 5306 Dipodomys merriami Rodent Control
## 5307 Dipodomys merriami Rodent Control
## 5308 Dipodomys merriami Rodent Control
## 5309 Dipodomys merriami Rodent Control
## 5310 Dipodomys merriami Rodent Control
## 5311 Dipodomys merriami Rodent Control
## 5312 Dipodomys merriami Rodent Control
## 5313 Dipodomys merriami Rodent Control
## 5314 Dipodomys merriami Rodent Control
## 5315 Dipodomys merriami Rodent Control
## 5316 Dipodomys merriami Rodent Control
## 5317 Dipodomys merriami Rodent Control
## 5318 Dipodomys merriami Rodent Control
## 5319 Dipodomys merriami Rodent Control
## 5320 Dipodomys merriami Rodent Control
## 5321 Dipodomys merriami Rodent Control
## 5322 Dipodomys merriami Rodent Control
## 5323 Dipodomys merriami Rodent Control
## 5324 Dipodomys merriami Rodent Control
## 5325 Dipodomys merriami Rodent Control
## 5326 Dipodomys merriami Rodent Control
## 5327 Dipodomys merriami Rodent Control
## 5328 Dipodomys merriami Rodent Control
## 5329 Dipodomys merriami Rodent Control
## 5330 Dipodomys merriami Rodent Control
## 5331 Dipodomys merriami Rodent Control
## 5332 Dipodomys merriami Rodent Control
## 5333 Dipodomys merriami Rodent Control
## 5334 Dipodomys merriami Rodent Control
## 5335 Dipodomys merriami Rodent Control
## 5336 Dipodomys merriami Rodent Control
## 5337 Dipodomys merriami Rodent Control
## 5338 Dipodomys merriami Rodent Control
## 5339 Dipodomys merriami Rodent Control
## 5340 Dipodomys merriami Rodent Control
## 5341 Dipodomys merriami Rodent Control
## 5342 Dipodomys merriami Rodent Control
## 5343 Dipodomys merriami Rodent Control
## 5344 Dipodomys merriami Rodent Control
## 5345 Dipodomys merriami Rodent Control
## 5346 Dipodomys merriami Rodent Control
## 5347 Dipodomys merriami Rodent Control
## 5348 Dipodomys merriami Rodent Control
## 5349 Dipodomys merriami Rodent Control
## 5350 Dipodomys merriami Rodent Control
## 5351 Dipodomys merriami Rodent Control
## 5352 Dipodomys merriami Rodent Control
## 5353 Dipodomys merriami Rodent Control
## 5354 Dipodomys merriami Rodent Control
## 5355 Dipodomys merriami Rodent Control
## 5356 Dipodomys merriami Rodent Control
## 5357 Dipodomys merriami Rodent Control
## 5358 Dipodomys merriami Rodent Control
## 5359 Dipodomys merriami Rodent Control
## 5360 Dipodomys merriami Rodent Control
## 5361 Dipodomys merriami Rodent Control
## 5362 Dipodomys merriami Rodent Control
## 5363 Dipodomys merriami Rodent Control
## 5364 Dipodomys merriami Rodent Control
## 5365 Dipodomys merriami Rodent Control
## 5366 Dipodomys merriami Rodent Control
## 5367 Dipodomys merriami Rodent Control
## 5368 Dipodomys merriami Rodent Control
## 5369 Dipodomys merriami Rodent Control
## 5370 Dipodomys merriami Rodent Control
## 5371 Dipodomys merriami Rodent Control
## 5372 Dipodomys merriami Rodent Control
## 5373 Dipodomys merriami Rodent Control
## 5374 Dipodomys merriami Rodent Control
## 5375 Dipodomys merriami Rodent Control
## 5376 Dipodomys merriami Rodent Control
## 5377 Dipodomys merriami Rodent Control
## 5378 Dipodomys merriami Rodent Control
## 5379 Dipodomys merriami Rodent Control
## 5380 Dipodomys merriami Rodent Control
## 5381 Dipodomys merriami Rodent Control
## 5382 Dipodomys merriami Rodent Control
## 5383 Dipodomys merriami Rodent Control
## 5384 Dipodomys merriami Rodent Control
## 5385 Dipodomys merriami Rodent Control
## 5386 Dipodomys merriami Rodent Control
## 5387 Dipodomys merriami Rodent Control
## 5388 Dipodomys merriami Rodent Control
## 5389 Dipodomys merriami Rodent Control
## 5390 Dipodomys merriami Rodent Control
## 5391 Dipodomys merriami Rodent Control
## 5392 Dipodomys merriami Rodent Control
## 5393 Dipodomys merriami Rodent Control
## 5394 Dipodomys merriami Rodent Control
## 5395 Dipodomys merriami Rodent Control
## 5396 Dipodomys merriami Rodent Control
## 5397 Dipodomys merriami Rodent Control
## 5398 Dipodomys merriami Rodent Control
## 5399 Dipodomys merriami Rodent Control
## 5400 Dipodomys merriami Rodent Control
## 5401 Dipodomys merriami Rodent Control
## 5402 Dipodomys merriami Rodent Control
## 5403 Dipodomys merriami Rodent Control
## 5404 Dipodomys merriami Rodent Control
## 5405 Dipodomys merriami Rodent Control
## 5406 Dipodomys merriami Rodent Control
## 5407 Dipodomys merriami Rodent Control
## 5408 Dipodomys merriami Rodent Control
## 5409 Dipodomys merriami Rodent Control
## 5410 Dipodomys merriami Rodent Control
## 5411 Dipodomys merriami Rodent Control
## 5412 Dipodomys merriami Rodent Control
## 5413 Dipodomys merriami Rodent Control
## 5414 Dipodomys merriami Rodent Control
## 5415 Dipodomys merriami Rodent Control
## 5416 Dipodomys merriami Rodent Control
## 5417 Dipodomys merriami Rodent Control
## 5418 Dipodomys merriami Rodent Control
## 5419 Dipodomys merriami Rodent Control
## 5420 Dipodomys merriami Rodent Control
## 5421 Dipodomys merriami Rodent Control
## 5422 Dipodomys merriami Rodent Control
## 5423 Dipodomys merriami Rodent Control
## 5424 Dipodomys merriami Rodent Control
## 5425 Dipodomys merriami Rodent Control
## 5426 Dipodomys merriami Rodent Control
## 5427 Dipodomys merriami Rodent Control
## 5428 Dipodomys merriami Rodent Control
## 5429 Dipodomys merriami Rodent Control
## 5430 Dipodomys merriami Rodent Control
## 5431 Dipodomys merriami Rodent Control
## 5432 Dipodomys merriami Rodent Control
## 5433 Dipodomys merriami Rodent Control
## 5434 Dipodomys merriami Rodent Control
## 5435 Dipodomys merriami Rodent Control
## 5436 Dipodomys merriami Rodent Control
## 5437 Dipodomys merriami Rodent Control
## 5438 Dipodomys merriami Rodent Control
## 5439 Dipodomys merriami Rodent Control
## 5440 Dipodomys merriami Rodent Control
## 5441 Dipodomys merriami Rodent Control
## 5442 Dipodomys merriami Rodent Control
## 5443 Dipodomys merriami Rodent Control
## 5444 Dipodomys merriami Rodent Control
## 5445 Dipodomys merriami Rodent Control
## 5446 Dipodomys merriami Rodent Control
## 5447 Dipodomys merriami Rodent Control
## 5448 Dipodomys merriami Rodent Control
## 5449 Dipodomys merriami Rodent Control
## 5450 Dipodomys merriami Rodent Control
## 5451 Dipodomys merriami Rodent Control
## 5452 Dipodomys merriami Rodent Control
## 5453 Dipodomys merriami Rodent Control
## 5454 Dipodomys merriami Rodent Control
## 5455 Dipodomys merriami Rodent Control
## 5456 Dipodomys merriami Rodent Control
## 5457 Dipodomys merriami Rodent Control
## 5458 Dipodomys merriami Rodent Control
## 5459 Dipodomys merriami Rodent Control
## 5460 Dipodomys merriami Rodent Control
## 5461 Dipodomys merriami Rodent Control
## 5462 Dipodomys merriami Rodent Control
## 5463 Dipodomys merriami Rodent Control
## 5464 Dipodomys merriami Rodent Control
## 5465 Dipodomys merriami Rodent Control
## 5466 Dipodomys merriami Rodent Control
## 5467 Dipodomys merriami Rodent Control
## 5468 Dipodomys merriami Rodent Control
## 5469 Dipodomys merriami Rodent Control
## 5470 Dipodomys merriami Rodent Control
## 5471 Dipodomys merriami Rodent Control
## 5472 Dipodomys merriami Rodent Control
## 5473 Dipodomys merriami Rodent Control
## 5474 Dipodomys merriami Rodent Control
## 5475 Dipodomys merriami Rodent Control
## 5476 Dipodomys merriami Rodent Control
## 5477 Dipodomys merriami Rodent Control
## 5478 Dipodomys merriami Rodent Control
## 5479 Dipodomys merriami Rodent Control
## 5480 Dipodomys merriami Rodent Control
## 5481 Dipodomys merriami Rodent Control
## 5482 Dipodomys merriami Rodent Control
## 5483 Dipodomys merriami Rodent Control
## 5484 Dipodomys merriami Rodent Control
## 5485 Dipodomys merriami Rodent Control
## 5486 Dipodomys merriami Rodent Control
## 5487 Dipodomys merriami Rodent Control
## 5488 Dipodomys merriami Rodent Control
## 5489 Dipodomys merriami Rodent Control
## 5490 Dipodomys merriami Rodent Control
## 5491 Dipodomys merriami Rodent Control
## 5492 Dipodomys merriami Rodent Control
## 5493 Dipodomys merriami Rodent Control
## 5494 Dipodomys merriami Rodent Control
## 5495 Dipodomys merriami Rodent Control
## 5496 Dipodomys merriami Rodent Control
## 5497 Dipodomys merriami Rodent Control
## 5498 Dipodomys merriami Rodent Control
## 5499 Dipodomys merriami Rodent Control
## 5500 Dipodomys merriami Rodent Control
## 5501 Dipodomys merriami Rodent Control
## 5502 Dipodomys merriami Rodent Control
## 5503 Dipodomys merriami Rodent Control
## 5504 Dipodomys merriami Rodent Control
## 5505 Dipodomys merriami Rodent Control
## 5506 Dipodomys merriami Rodent Control
## 5507 Dipodomys merriami Rodent Control
## 5508 Dipodomys merriami Rodent Control
## 5509 Dipodomys merriami Rodent Control
## 5510 Dipodomys merriami Rodent Control
## 5511 Dipodomys merriami Rodent Control
## 5512 Dipodomys merriami Rodent Control
## 5513 Dipodomys merriami Rodent Control
## 5514 Dipodomys merriami Rodent Control
## 5515 Dipodomys merriami Rodent Control
## 5516 Dipodomys merriami Rodent Control
## 5517 Dipodomys merriami Rodent Control
## 5518 Dipodomys merriami Rodent Control
## 5519 Dipodomys merriami Rodent Control
## 5520 Dipodomys merriami Rodent Control
## 5521 Dipodomys merriami Rodent Control
## 5522 Dipodomys merriami Rodent Control
## 5523 Dipodomys merriami Rodent Control
## 5524 Dipodomys merriami Rodent Control
## 5525 Dipodomys merriami Rodent Control
## 5526 Dipodomys merriami Rodent Control
## 5527 Dipodomys merriami Rodent Control
## 5528 Dipodomys merriami Rodent Control
## 5529 Dipodomys merriami Rodent Control
## 5530 Dipodomys merriami Rodent Control
## 5531 Dipodomys merriami Rodent Control
## 5532 Dipodomys merriami Rodent Control
## 5533 Dipodomys merriami Rodent Control
## 5534 Dipodomys merriami Rodent Control
## 5535 Dipodomys merriami Rodent Control
## 5536 Dipodomys merriami Rodent Control
## 5537 Dipodomys merriami Rodent Control
## 5538 Dipodomys merriami Rodent Control
## 5539 Dipodomys merriami Rodent Control
## 5540 Dipodomys merriami Rodent Control
## 5541 Dipodomys merriami Rodent Control
## 5542 Dipodomys merriami Rodent Control
## 5543 Dipodomys merriami Rodent Control
## 5544 Dipodomys merriami Rodent Control
## 5545 Dipodomys merriami Rodent Control
## 5546 Dipodomys merriami Rodent Control
## 5547 Dipodomys merriami Rodent Control
## 5548 Dipodomys merriami Rodent Control
## 5549 Dipodomys merriami Rodent Control
## 5550 Dipodomys merriami Rodent Control
## 5551 Dipodomys merriami Rodent Control
## 5552 Dipodomys merriami Rodent Control
## 5553 Dipodomys merriami Rodent Control
## 5554 Dipodomys merriami Rodent Control
## 5555 Dipodomys merriami Rodent Control
## 5556 Dipodomys merriami Rodent Control
## 5557 Dipodomys merriami Rodent Control
## 5558 Dipodomys merriami Rodent Control
## 5559 Dipodomys merriami Rodent Control
## 5560 Dipodomys merriami Rodent Control
## 5561 Dipodomys merriami Rodent Control
## 5562 Dipodomys merriami Rodent Control
## 5563 Dipodomys merriami Rodent Control
## 5564 Dipodomys merriami Rodent Control
## 5565 Dipodomys merriami Rodent Control
## 5566 Dipodomys merriami Rodent Control
## 5567 Dipodomys merriami Rodent Control
## 5568 Dipodomys merriami Rodent Control
## 5569 Dipodomys merriami Rodent Control
## 5570 Dipodomys merriami Rodent Control
## 5571 Dipodomys merriami Rodent Control
## 5572 Dipodomys merriami Rodent Control
## 5573 Dipodomys merriami Rodent Control
## 5574 Dipodomys merriami Rodent Control
## 5575 Dipodomys merriami Rodent Control
## 5576 Dipodomys merriami Rodent Control
## 5577 Dipodomys merriami Rodent Control
## 5578 Dipodomys merriami Rodent Control
## 5579 Dipodomys merriami Rodent Control
## 5580 Dipodomys merriami Rodent Control
## 5581 Dipodomys merriami Rodent Control
## 5582 Dipodomys merriami Rodent Control
## 5583 Dipodomys merriami Rodent Control
## 5584 Dipodomys merriami Rodent Control
## 5585 Dipodomys merriami Rodent Control
## 5586 Dipodomys merriami Rodent Control
## 5587 Dipodomys merriami Rodent Control
## 5588 Dipodomys merriami Rodent Control
## 5589 Dipodomys merriami Rodent Control
## 5590 Dipodomys merriami Rodent Control
## 5591 Dipodomys merriami Rodent Control
## 5592 Dipodomys merriami Rodent Control
## 5593 Dipodomys merriami Rodent Control
## 5594 Dipodomys merriami Rodent Control
## 5595 Dipodomys merriami Rodent Control
## 5596 Dipodomys merriami Rodent Control
## 5597 Dipodomys merriami Rodent Control
## 5598 Dipodomys merriami Rodent Control
## 5599 Dipodomys merriami Rodent Control
## 5600 Dipodomys merriami Rodent Control
## 5601 Dipodomys merriami Rodent Control
## 5602 Dipodomys merriami Rodent Control
## 5603 Dipodomys merriami Rodent Control
## 5604 Dipodomys merriami Rodent Control
## 5605 Dipodomys merriami Rodent Control
## 5606 Dipodomys merriami Rodent Control
## 5607 Dipodomys merriami Rodent Control
## 5608 Dipodomys merriami Rodent Control
## 5609 Dipodomys merriami Rodent Control
## 5610 Dipodomys merriami Rodent Control
## 5611 Dipodomys merriami Rodent Control
## 5612 Dipodomys merriami Rodent Control
## 5613 Dipodomys merriami Rodent Control
## 5614 Dipodomys merriami Rodent Control
## 5615 Dipodomys merriami Rodent Control
## 5616 Dipodomys merriami Rodent Control
## 5617 Dipodomys merriami Rodent Control
## 5618 Dipodomys merriami Rodent Control
## 5619 Dipodomys merriami Rodent Control
## 5620 Dipodomys merriami Rodent Control
## 5621 Dipodomys merriami Rodent Control
## 5622 Dipodomys merriami Rodent Control
## 5623 Dipodomys merriami Rodent Control
## 5624 Dipodomys merriami Rodent Control
## 5625 Dipodomys merriami Rodent Control
## 5626 Dipodomys merriami Rodent Control
## 5627 Dipodomys merriami Rodent Control
## 5628 Dipodomys merriami Rodent Control
## 5629 Dipodomys merriami Rodent Control
## 5630 Dipodomys merriami Rodent Control
## 5631 Dipodomys merriami Rodent Control
## 5632 Dipodomys merriami Rodent Control
## 5633 Dipodomys merriami Rodent Control
## 5634 Dipodomys merriami Rodent Control
## 5635 Dipodomys merriami Rodent Control
## 5636 Dipodomys merriami Rodent Control
## 5637 Dipodomys merriami Rodent Control
## 5638 Dipodomys merriami Rodent Control
## 5639 Dipodomys merriami Rodent Control
## 5640 Dipodomys merriami Rodent Control
## 5641 Dipodomys merriami Rodent Control
## 5642 Dipodomys merriami Rodent Control
## 5643 Dipodomys merriami Rodent Control
## 5644 Dipodomys merriami Rodent Control
## 5645 Dipodomys merriami Rodent Control
## 5646 Dipodomys merriami Rodent Control
## 5647 Dipodomys merriami Rodent Control
## 5648 Dipodomys merriami Rodent Control
## 5649 Dipodomys merriami Rodent Control
## 5650 Dipodomys merriami Rodent Control
## 5651 Dipodomys merriami Rodent Control
## 5652 Dipodomys merriami Rodent Control
## 5653 Dipodomys merriami Rodent Control
## 5654 Dipodomys merriami Rodent Control
## 5655 Dipodomys merriami Rodent Control
## 5656 Dipodomys merriami Rodent Control
## 5657 Dipodomys merriami Rodent Control
## 5658 Dipodomys merriami Rodent Control
## 5659 Dipodomys merriami Rodent Control
## 5660 Dipodomys merriami Rodent Control
## 5661 Dipodomys merriami Rodent Control
## 5662 Dipodomys merriami Rodent Control
## 5663 Dipodomys merriami Rodent Control
## 5664 Dipodomys merriami Rodent Control
## 5665 Dipodomys merriami Rodent Control
## 5666 Dipodomys merriami Rodent Control
## 5667 Dipodomys merriami Rodent Control
## 5668 Dipodomys merriami Rodent Control
## 5669 Dipodomys merriami Rodent Control
## 5670 Dipodomys merriami Rodent Control
## 5671 Dipodomys merriami Rodent Control
## 5672 Dipodomys merriami Rodent Control
## 5673 Dipodomys merriami Rodent Control
## 5674 Dipodomys merriami Rodent Control
## 5675 Dipodomys merriami Rodent Control
## 5676 Dipodomys merriami Rodent Control
## 5677 Dipodomys merriami Rodent Control
## 5678 Dipodomys merriami Rodent Control
## 5679 Dipodomys merriami Rodent Control
## 5680 Dipodomys merriami Rodent Control
## 5681 Dipodomys merriami Rodent Control
## 5682 Dipodomys merriami Rodent Control
## 5683 Dipodomys merriami Rodent Control
## 5684 Dipodomys merriami Rodent Control
## 5685 Dipodomys merriami Rodent Control
## 5686 Dipodomys merriami Rodent Control
## 5687 Dipodomys merriami Rodent Control
## 5688 Dipodomys merriami Rodent Control
## 5689 Dipodomys merriami Rodent Control
## 5690 Dipodomys merriami Rodent Control
## 5691 Dipodomys merriami Rodent Control
## 5692 Dipodomys merriami Rodent Control
## 5693 Dipodomys merriami Rodent Control
## 5694 Dipodomys merriami Rodent Control
## 5695 Dipodomys merriami Rodent Control
## 5696 Dipodomys merriami Rodent Control
## 5697 Dipodomys merriami Rodent Control
## 5698 Dipodomys merriami Rodent Control
## 5699 Dipodomys merriami Rodent Control
## 5700 Dipodomys merriami Rodent Control
## 5701 Dipodomys merriami Rodent Control
## 5702 Dipodomys merriami Rodent Control
## 5703 Dipodomys merriami Rodent Control
## 5704 Dipodomys merriami Rodent Control
## 5705 Dipodomys merriami Rodent Control
## 5706 Dipodomys merriami Rodent Control
## 5707 Dipodomys merriami Rodent Control
## 5708 Dipodomys merriami Rodent Control
## 5709 Dipodomys merriami Rodent Control
## 5710 Dipodomys merriami Rodent Control
## 5711 Dipodomys merriami Rodent Control
## 5712 Dipodomys merriami Rodent Control
## 5713 Dipodomys merriami Rodent Control
## 5714 Dipodomys merriami Rodent Control
## 5715 Dipodomys merriami Rodent Control
## 5716 Dipodomys merriami Rodent Control
## 5717 Dipodomys merriami Rodent Control
## 5718 Dipodomys merriami Rodent Control
## 5719 Dipodomys merriami Rodent Control
## 5720 Dipodomys merriami Rodent Control
## 5721 Dipodomys merriami Rodent Control
## 5722 Dipodomys merriami Rodent Control
## 5723 Dipodomys merriami Rodent Control
## 5724 Dipodomys merriami Rodent Control
## 5725 Dipodomys merriami Rodent Control
## 5726 Dipodomys merriami Rodent Control
## 5727 Dipodomys merriami Rodent Control
## 5728 Dipodomys merriami Rodent Control
## 5729 Dipodomys merriami Rodent Control
## 5730 Dipodomys merriami Rodent Control
## 5731 Dipodomys merriami Rodent Control
## 5732 Dipodomys merriami Rodent Control
## 5733 Dipodomys merriami Rodent Control
## 5734 Dipodomys merriami Rodent Control
## 5735 Dipodomys merriami Rodent Control
## 5736 Dipodomys merriami Rodent Control
## 5737 Dipodomys merriami Rodent Control
## 5738 Dipodomys merriami Rodent Control
## 5739 Dipodomys merriami Rodent Control
## 5740 Dipodomys merriami Rodent Control
## 5741 Dipodomys merriami Rodent Control
## 5742 Dipodomys merriami Rodent Control
## 5743 Dipodomys merriami Rodent Control
## 5744 Dipodomys merriami Rodent Control
## 5745 Dipodomys merriami Rodent Control
## 5746 Dipodomys merriami Rodent Control
## 5747 Dipodomys merriami Rodent Control
## 5748 Dipodomys merriami Rodent Control
## 5749 Dipodomys merriami Rodent Control
## 5750 Dipodomys merriami Rodent Control
## 5751 Dipodomys merriami Rodent Control
## 5752 Dipodomys merriami Rodent Control
## 5753 Dipodomys merriami Rodent Control
## 5754 Dipodomys merriami Rodent Control
## 5755 Dipodomys merriami Rodent Control
## 5756 Dipodomys merriami Rodent Control
## 5757 Dipodomys merriami Rodent Control
## 5758 Dipodomys merriami Rodent Control
## 5759 Dipodomys merriami Rodent Control
## 5760 Dipodomys merriami Rodent Control
## 5761 Dipodomys merriami Rodent Control
## 5762 Dipodomys merriami Rodent Control
## 5763 Dipodomys merriami Rodent Control
## 5764 Dipodomys merriami Rodent Control
## 5765 Dipodomys merriami Rodent Control
## 5766 Dipodomys merriami Rodent Control
## 5767 Dipodomys merriami Rodent Control
## 5768 Dipodomys merriami Rodent Control
## 5769 Dipodomys merriami Rodent Control
## 5770 Dipodomys merriami Rodent Control
## 5771 Dipodomys merriami Rodent Control
## 5772 Dipodomys merriami Rodent Control
## 5773 Dipodomys merriami Rodent Control
## 5774 Dipodomys merriami Rodent Control
## 5775 Dipodomys merriami Rodent Control
## 5776 Dipodomys merriami Rodent Control
## 5777 Dipodomys merriami Rodent Control
## 5778 Dipodomys merriami Rodent Control
## 5779 Dipodomys merriami Rodent Control
## 5780 Dipodomys merriami Rodent Control
## 5781 Dipodomys merriami Rodent Control
## 5782 Dipodomys merriami Rodent Control
## 5783 Dipodomys merriami Rodent Control
## 5784 Dipodomys merriami Rodent Control
## 5785 Dipodomys merriami Rodent Control
## 5786 Dipodomys merriami Rodent Control
## 5787 Dipodomys merriami Rodent Control
## 5788 Dipodomys merriami Rodent Control
## 5789 Dipodomys merriami Rodent Control
## 5790 Dipodomys merriami Rodent Control
## 5791 Dipodomys merriami Rodent Control
## 5792 Dipodomys merriami Rodent Control
## 5793 Dipodomys merriami Rodent Control
## 5794 Dipodomys merriami Rodent Control
## 5795 Dipodomys merriami Rodent Control
## 5796 Dipodomys merriami Rodent Control
## 5797 Dipodomys merriami Rodent Control
## 5798 Dipodomys merriami Rodent Control
## 5799 Dipodomys merriami Rodent Control
## 5800 Dipodomys merriami Rodent Control
## 5801 Dipodomys merriami Rodent Control
## 5802 Dipodomys merriami Rodent Control
## 5803 Dipodomys merriami Rodent Control
## 5804 Dipodomys merriami Rodent Control
## 5805 Dipodomys merriami Rodent Control
## 5806 Dipodomys merriami Rodent Control
## 5807 Dipodomys merriami Rodent Control
## 5808 Dipodomys merriami Rodent Control
## 5809 Dipodomys merriami Rodent Control
## 5810 Dipodomys merriami Rodent Control
## 5811 Dipodomys merriami Rodent Control
## 5812 Dipodomys merriami Rodent Control
## 5813 Dipodomys merriami Rodent Control
## 5814 Dipodomys merriami Rodent Control
## 5815 Dipodomys merriami Rodent Control
## 5816 Dipodomys merriami Rodent Control
## 5817 Dipodomys merriami Rodent Control
## 5818 Dipodomys merriami Rodent Control
## 5819 Dipodomys merriami Rodent Control
## 5820 Dipodomys merriami Rodent Control
## 5821 Dipodomys merriami Rodent Control
## 5822 Dipodomys merriami Rodent Control
## 5823 Dipodomys merriami Rodent Control
## 5824 Dipodomys merriami Rodent Control
## 5825 Dipodomys merriami Rodent Control
## 5826 Dipodomys merriami Rodent Control
## 5827 Dipodomys merriami Rodent Control
## 5828 Dipodomys merriami Rodent Control
## 5829 Dipodomys merriami Rodent Control
## 5830 Dipodomys merriami Rodent Control
## 5831 Dipodomys merriami Rodent Control
## 5832 Dipodomys merriami Rodent Control
## 5833 Dipodomys merriami Rodent Control
## 5834 Dipodomys merriami Rodent Control
## 5835 Dipodomys merriami Rodent Control
## 5836 Dipodomys merriami Rodent Control
## 5837 Dipodomys merriami Rodent Control
## 5838 Dipodomys merriami Rodent Control
## 5839 Dipodomys merriami Rodent Control
## 5840 Dipodomys merriami Rodent Control
## 5841 Dipodomys merriami Rodent Control
## 5842 Dipodomys merriami Rodent Control
## 5843 Dipodomys merriami Rodent Control
## 5844 Dipodomys merriami Rodent Control
## 5845 Dipodomys merriami Rodent Control
## 5846 Dipodomys merriami Rodent Control
## 5847 Dipodomys merriami Rodent Control
## 5848 Dipodomys merriami Rodent Control
## 5849 Dipodomys merriami Rodent Control
## 5850 Dipodomys merriami Rodent Control
## 5851 Dipodomys merriami Rodent Control
## 5852 Dipodomys merriami Rodent Control
## 5853 Dipodomys merriami Rodent Control
## 5854 Dipodomys merriami Rodent Control
## 5855 Dipodomys merriami Rodent Control
## 5856 Dipodomys merriami Rodent Control
## 5857 Dipodomys merriami Rodent Control
## 5858 Dipodomys merriami Rodent Control
## 5859 Dipodomys merriami Rodent Control
## 5860 Dipodomys merriami Rodent Control
## 5861 Dipodomys merriami Rodent Control
## 5862 Dipodomys merriami Rodent Control
## 5863 Dipodomys merriami Rodent Control
## 5864 Dipodomys merriami Rodent Control
## 5865 Dipodomys merriami Rodent Control
## 5866 Dipodomys merriami Rodent Control
## 5867 Dipodomys merriami Rodent Control
## 5868 Dipodomys merriami Rodent Control
## 5869 Dipodomys merriami Rodent Control
## 5870 Dipodomys merriami Rodent Control
## 5871 Dipodomys merriami Rodent Control
## 5872 Dipodomys merriami Rodent Control
## 5873 Dipodomys merriami Rodent Control
## 5874 Dipodomys merriami Rodent Control
## 5875 Dipodomys merriami Rodent Control
## 5876 Dipodomys merriami Rodent Control
## 5877 Dipodomys merriami Rodent Control
## 5878 Dipodomys merriami Rodent Control
## 5879 Dipodomys merriami Rodent Control
## 5880 Dipodomys merriami Rodent Control
## 5881 Dipodomys merriami Rodent Control
## 5882 Dipodomys merriami Rodent Control
## 5883 Dipodomys merriami Rodent Control
## 5884 Dipodomys merriami Rodent Control
## 5885 Dipodomys merriami Rodent Control
## 5886 Dipodomys merriami Rodent Control
## 5887 Dipodomys merriami Rodent Control
## 5888 Dipodomys merriami Rodent Control
## 5889 Dipodomys merriami Rodent Control
## 5890 Dipodomys merriami Rodent Control
## 5891 Dipodomys merriami Rodent Control
## 5892 Dipodomys merriami Rodent Control
## 5893 Dipodomys merriami Rodent Control
## 5894 Dipodomys merriami Rodent Control
## 5895 Dipodomys merriami Rodent Control
## 5896 Dipodomys merriami Rodent Control
## 5897 Dipodomys merriami Rodent Control
## 5898 Dipodomys merriami Rodent Control
## 5899 Dipodomys merriami Rodent Control
## 5900 Dipodomys merriami Rodent Control
## 5901 Dipodomys merriami Rodent Control
## 5902 Dipodomys merriami Rodent Control
## 5903 Dipodomys merriami Rodent Control
## 5904 Dipodomys merriami Rodent Control
## 5905 Dipodomys merriami Rodent Control
## 5906 Dipodomys merriami Rodent Control
## 5907 Dipodomys merriami Rodent Control
## 5908 Dipodomys merriami Rodent Control
## 5909 Dipodomys merriami Rodent Control
## 5910 Dipodomys merriami Rodent Control
## 5911 Dipodomys merriami Rodent Control
## 5912 Dipodomys merriami Rodent Control
## 5913 Dipodomys merriami Rodent Control
## 5914 Dipodomys merriami Rodent Control
## 5915 Dipodomys merriami Rodent Control
## 5916 Dipodomys merriami Rodent Control
## 5917 Dipodomys merriami Rodent Control
## 5918 Dipodomys merriami Rodent Control
## 5919 Dipodomys merriami Rodent Control
## 5920 Dipodomys merriami Rodent Control
## 5921 Dipodomys merriami Rodent Control
## 5922 Dipodomys merriami Rodent Control
## 5923 Dipodomys merriami Rodent Control
## 5924 Dipodomys merriami Rodent Control
## 5925 Dipodomys merriami Rodent Control
## 5926 Dipodomys merriami Rodent Control
## 5927 Dipodomys merriami Rodent Control
## 5928 Dipodomys merriami Rodent Control
## 5929 Dipodomys merriami Rodent Control
## 5930 Dipodomys merriami Rodent Control
## 5931 Dipodomys merriami Rodent Control
## 5932 Dipodomys merriami Rodent Control
## 5933 Dipodomys merriami Rodent Control
## 5934 Dipodomys merriami Rodent Control
## 5935 Dipodomys merriami Rodent Control
## 5936 Dipodomys merriami Rodent Control
## 5937 Dipodomys merriami Rodent Control
## 5938 Dipodomys merriami Rodent Control
## 5939 Dipodomys merriami Rodent Control
## 5940 Dipodomys merriami Rodent Control
## 5941 Dipodomys merriami Rodent Control
## 5942 Dipodomys merriami Rodent Control
## 5943 Dipodomys merriami Rodent Control
## 5944 Dipodomys merriami Rodent Control
## 5945 Dipodomys merriami Rodent Control
## 5946 Dipodomys merriami Rodent Control
## 5947 Dipodomys merriami Rodent Control
## 5948 Dipodomys merriami Rodent Control
## 5949 Dipodomys merriami Rodent Control
## 5950 Dipodomys merriami Rodent Control
## 5951 Dipodomys merriami Rodent Control
## 5952 Dipodomys merriami Rodent Control
## 5953 Dipodomys merriami Rodent Control
## 5954 Dipodomys merriami Rodent Control
## 5955 Dipodomys merriami Rodent Control
## 5956 Dipodomys merriami Rodent Control
## 5957 Dipodomys merriami Rodent Control
## 5958 Dipodomys merriami Rodent Control
## 5959 Dipodomys merriami Rodent Control
## 5960 Dipodomys merriami Rodent Control
## 5961 Dipodomys merriami Rodent Control
## 5962 Dipodomys merriami Rodent Control
## 5963 Dipodomys merriami Rodent Control
## 5964 Dipodomys merriami Rodent Control
## 5965 Dipodomys merriami Rodent Control
## 5966 Dipodomys merriami Rodent Control
## 5967 Dipodomys merriami Rodent Control
## 5968 Dipodomys merriami Rodent Control
## 5969 Dipodomys merriami Rodent Control
## 5970 Dipodomys merriami Rodent Control
## 5971 Dipodomys merriami Rodent Control
## 5972 Dipodomys merriami Rodent Control
## 5973 Dipodomys merriami Rodent Control
## 5974 Dipodomys merriami Rodent Control
## 5975 Dipodomys merriami Rodent Control
## 5976 Dipodomys merriami Rodent Control
## 5977 Dipodomys merriami Rodent Control
## 5978 Dipodomys merriami Rodent Control
## 5979 Dipodomys merriami Rodent Control
## 5980 Dipodomys merriami Rodent Control
## 5981 Dipodomys merriami Rodent Control
## 5982 Dipodomys merriami Rodent Control
## 5983 Dipodomys merriami Rodent Control
## 5984 Dipodomys merriami Rodent Control
## 5985 Dipodomys merriami Rodent Control
## 5986 Dipodomys merriami Rodent Control
## 5987 Dipodomys merriami Rodent Control
## 5988 Dipodomys merriami Rodent Control
## 5989 Dipodomys merriami Rodent Control
## 5990 Dipodomys merriami Rodent Control
## 5991 Dipodomys merriami Rodent Control
## 5992 Dipodomys merriami Rodent Control
## 5993 Dipodomys merriami Rodent Control
## 5994 Dipodomys merriami Rodent Control
## 5995 Dipodomys merriami Rodent Control
## 5996 Dipodomys merriami Rodent Control
## 5997 Dipodomys merriami Rodent Control
## 5998 Dipodomys merriami Rodent Control
## 5999 Perognathus flavus Rodent Control
## 6000 Perognathus flavus Rodent Control
## 6001 Perognathus flavus Rodent Control
## 6002 Perognathus flavus Rodent Control
## 6003 Perognathus flavus Rodent Control
## 6004 Perognathus flavus Rodent Control
## 6005 Perognathus flavus Rodent Control
## 6006 Perognathus flavus Rodent Control
## 6007 Perognathus flavus Rodent Control
## 6008 Perognathus flavus Rodent Control
## 6009 Perognathus flavus Rodent Control
## 6010 Perognathus flavus Rodent Control
## 6011 Perognathus flavus Rodent Control
## 6012 Perognathus flavus Rodent Control
## 6013 Perognathus flavus Rodent Control
## 6014 Perognathus flavus Rodent Control
## 6015 Perognathus flavus Rodent Control
## 6016 Perognathus flavus Rodent Control
## 6017 Perognathus flavus Rodent Control
## 6018 Perognathus flavus Rodent Control
## 6019 Perognathus flavus Rodent Control
## 6020 Perognathus flavus Rodent Control
## 6021 Perognathus flavus Rodent Control
## 6022 Perognathus flavus Rodent Control
## 6023 Perognathus flavus Rodent Control
## 6024 Perognathus flavus Rodent Control
## 6025 Perognathus flavus Rodent Control
## 6026 Perognathus flavus Rodent Control
## 6027 Perognathus flavus Rodent Control
## 6028 Perognathus flavus Rodent Control
## 6029 Perognathus flavus Rodent Control
## 6030 Perognathus flavus Rodent Control
## 6031 Perognathus flavus Rodent Control
## 6032 Perognathus flavus Rodent Control
## 6033 Perognathus flavus Rodent Control
## 6034 Perognathus flavus Rodent Control
## 6035 Perognathus flavus Rodent Control
## 6036 Perognathus flavus Rodent Control
## 6037 Perognathus flavus Rodent Control
## 6038 Perognathus flavus Rodent Control
## 6039 Perognathus flavus Rodent Control
## 6040 Perognathus flavus Rodent Control
## 6041 Perognathus flavus Rodent Control
## 6042 Perognathus flavus Rodent Control
## 6043 Perognathus flavus Rodent Control
## 6044 Perognathus flavus Rodent Control
## 6045 Perognathus flavus Rodent Control
## 6046 Perognathus flavus Rodent Control
## 6047 Perognathus flavus Rodent Control
## 6048 Perognathus flavus Rodent Control
## 6049 Perognathus flavus Rodent Control
## 6050 Perognathus flavus Rodent Control
## 6051 Perognathus flavus Rodent Control
## 6052 Perognathus flavus Rodent Control
## 6053 Perognathus flavus Rodent Control
## 6054 Perognathus flavus Rodent Control
## 6055 Perognathus flavus Rodent Control
## 6056 Perognathus flavus Rodent Control
## 6057 Perognathus flavus Rodent Control
## 6058 Perognathus flavus Rodent Control
## 6059 Perognathus flavus Rodent Control
## 6060 Perognathus flavus Rodent Control
## 6061 Perognathus flavus Rodent Control
## 6062 Perognathus flavus Rodent Control
## 6063 Perognathus flavus Rodent Control
## 6064 Perognathus flavus Rodent Control
## 6065 Peromyscus eremicus Rodent Control
## 6066 Peromyscus eremicus Rodent Control
## 6067 Peromyscus eremicus Rodent Control
## 6068 Peromyscus eremicus Rodent Control
## 6069 Peromyscus eremicus Rodent Control
## 6070 Peromyscus eremicus Rodent Control
## 6071 Peromyscus eremicus Rodent Control
## 6072 Peromyscus eremicus Rodent Control
## 6073 Peromyscus eremicus Rodent Control
## 6074 Peromyscus eremicus Rodent Control
## 6075 Peromyscus eremicus Rodent Control
## 6076 Peromyscus eremicus Rodent Control
## 6077 Peromyscus eremicus Rodent Control
## 6078 Peromyscus eremicus Rodent Control
## 6079 Peromyscus eremicus Rodent Control
## 6080 Peromyscus eremicus Rodent Control
## 6081 Peromyscus eremicus Rodent Control
## 6082 Peromyscus eremicus Rodent Control
## 6083 Peromyscus eremicus Rodent Control
## 6084 Peromyscus eremicus Rodent Control
## 6085 Peromyscus eremicus Rodent Control
## 6086 Peromyscus eremicus Rodent Control
## 6087 Peromyscus eremicus Rodent Control
## 6088 Peromyscus eremicus Rodent Control
## 6089 Peromyscus eremicus Rodent Control
## 6090 Peromyscus eremicus Rodent Control
## 6091 Peromyscus eremicus Rodent Control
## 6092 Peromyscus eremicus Rodent Control
## 6093 Peromyscus eremicus Rodent Control
## 6094 Peromyscus eremicus Rodent Control
## 6095 Peromyscus eremicus Rodent Control
## 6096 Peromyscus eremicus Rodent Control
## 6097 Peromyscus eremicus Rodent Control
## 6098 Peromyscus eremicus Rodent Control
## 6099 Peromyscus eremicus Rodent Control
## 6100 Peromyscus eremicus Rodent Control
## 6101 Peromyscus eremicus Rodent Control
## 6102 Peromyscus eremicus Rodent Control
## 6103 Peromyscus eremicus Rodent Control
## 6104 Dipodomys spectabilis Rodent Control
## 6105 Dipodomys spectabilis Rodent Control
## 6106 Dipodomys spectabilis Rodent Control
## 6107 Dipodomys spectabilis Rodent Control
## 6108 Dipodomys spectabilis Rodent Control
## 6109 Dipodomys spectabilis Rodent Control
## 6110 Dipodomys spectabilis Rodent Control
## 6111 Dipodomys spectabilis Rodent Control
## 6112 Dipodomys spectabilis Rodent Control
## 6113 Dipodomys spectabilis Rodent Control
## 6114 Dipodomys spectabilis Rodent Control
## 6115 Dipodomys spectabilis Rodent Control
## 6116 Dipodomys spectabilis Rodent Control
## 6117 Dipodomys spectabilis Rodent Control
## 6118 Dipodomys spectabilis Rodent Control
## 6119 Dipodomys spectabilis Rodent Control
## 6120 Dipodomys spectabilis Rodent Control
## 6121 Dipodomys spectabilis Rodent Control
## 6122 Dipodomys spectabilis Rodent Control
## 6123 Dipodomys spectabilis Rodent Control
## 6124 Dipodomys spectabilis Rodent Control
## 6125 Dipodomys spectabilis Rodent Control
## 6126 Dipodomys spectabilis Rodent Control
## 6127 Dipodomys spectabilis Rodent Control
## 6128 Dipodomys spectabilis Rodent Control
## 6129 Dipodomys spectabilis Rodent Control
## 6130 Dipodomys spectabilis Rodent Control
## 6131 Dipodomys spectabilis Rodent Control
## 6132 Dipodomys spectabilis Rodent Control
## 6133 Dipodomys spectabilis Rodent Control
## 6134 Dipodomys spectabilis Rodent Control
## 6135 Dipodomys spectabilis Rodent Control
## 6136 Dipodomys spectabilis Rodent Control
## 6137 Dipodomys spectabilis Rodent Control
## 6138 Dipodomys spectabilis Rodent Control
## 6139 Dipodomys spectabilis Rodent Control
## 6140 Dipodomys spectabilis Rodent Control
## 6141 Dipodomys spectabilis Rodent Control
## 6142 Dipodomys spectabilis Rodent Control
## 6143 Dipodomys spectabilis Rodent Control
## 6144 Dipodomys spectabilis Rodent Control
## 6145 Dipodomys spectabilis Rodent Control
## 6146 Dipodomys spectabilis Rodent Control
## 6147 Dipodomys spectabilis Rodent Control
## 6148 Dipodomys spectabilis Rodent Control
## 6149 Dipodomys spectabilis Rodent Control
## 6150 Dipodomys spectabilis Rodent Control
## 6151 Dipodomys spectabilis Rodent Control
## 6152 Dipodomys spectabilis Rodent Control
## 6153 Dipodomys spectabilis Rodent Control
## 6154 Dipodomys spectabilis Rodent Control
## 6155 Dipodomys spectabilis Rodent Control
## 6156 Dipodomys spectabilis Rodent Control
## 6157 Dipodomys spectabilis Rodent Control
## 6158 Dipodomys spectabilis Rodent Control
## 6159 Dipodomys spectabilis Rodent Control
## 6160 Dipodomys spectabilis Rodent Control
## 6161 Dipodomys spectabilis Rodent Control
## 6162 Dipodomys spectabilis Rodent Control
## 6163 Dipodomys spectabilis Rodent Control
## 6164 Dipodomys spectabilis Rodent Control
## 6165 Dipodomys spectabilis Rodent Control
## 6166 Dipodomys spectabilis Rodent Control
## 6167 Dipodomys spectabilis Rodent Control
## 6168 Dipodomys spectabilis Rodent Control
## 6169 Dipodomys spectabilis Rodent Control
## 6170 Dipodomys spectabilis Rodent Control
## 6171 Dipodomys spectabilis Rodent Control
## 6172 Dipodomys spectabilis Rodent Control
## 6173 Dipodomys spectabilis Rodent Control
## 6174 Dipodomys spectabilis Rodent Control
## 6175 Dipodomys spectabilis Rodent Control
## 6176 Dipodomys spectabilis Rodent Control
## 6177 Dipodomys spectabilis Rodent Control
## 6178 Dipodomys spectabilis Rodent Control
## 6179 Dipodomys spectabilis Rodent Control
## 6180 Dipodomys spectabilis Rodent Control
## 6181 Dipodomys spectabilis Rodent Control
## 6182 Dipodomys spectabilis Rodent Control
## 6183 Dipodomys spectabilis Rodent Control
## 6184 Dipodomys spectabilis Rodent Control
## 6185 Dipodomys spectabilis Rodent Control
## 6186 Dipodomys spectabilis Rodent Control
## 6187 Dipodomys spectabilis Rodent Control
## 6188 Dipodomys spectabilis Rodent Control
## 6189 Dipodomys spectabilis Rodent Control
## 6190 Dipodomys spectabilis Rodent Control
## 6191 Dipodomys spectabilis Rodent Control
## 6192 Dipodomys spectabilis Rodent Control
## 6193 Dipodomys spectabilis Rodent Control
## 6194 Dipodomys spectabilis Rodent Control
## 6195 Dipodomys spectabilis Rodent Control
## 6196 Dipodomys spectabilis Rodent Control
## 6197 Dipodomys spectabilis Rodent Control
## 6198 Dipodomys spectabilis Rodent Control
## 6199 Dipodomys spectabilis Rodent Control
## 6200 Dipodomys spectabilis Rodent Control
## 6201 Dipodomys spectabilis Rodent Control
## 6202 Dipodomys spectabilis Rodent Control
## 6203 Dipodomys spectabilis Rodent Control
## 6204 Dipodomys spectabilis Rodent Control
## 6205 Dipodomys spectabilis Rodent Control
## 6206 Dipodomys spectabilis Rodent Control
## 6207 Dipodomys spectabilis Rodent Control
## 6208 Dipodomys spectabilis Rodent Control
## 6209 Dipodomys spectabilis Rodent Control
## 6210 Dipodomys spectabilis Rodent Control
## 6211 Dipodomys spectabilis Rodent Control
## 6212 Dipodomys spectabilis Rodent Control
## 6213 Dipodomys spectabilis Rodent Control
## 6214 Dipodomys spectabilis Rodent Control
## 6215 Dipodomys spectabilis Rodent Control
## 6216 Dipodomys spectabilis Rodent Control
## 6217 Dipodomys spectabilis Rodent Control
## 6218 Dipodomys spectabilis Rodent Control
## 6219 Dipodomys spectabilis Rodent Control
## 6220 Dipodomys spectabilis Rodent Control
## 6221 Dipodomys spectabilis Rodent Control
## 6222 Dipodomys spectabilis Rodent Control
## 6223 Dipodomys spectabilis Rodent Control
## 6224 Dipodomys spectabilis Rodent Control
## 6225 Chaetodipus penicillatus Rodent Control
## 6226 Chaetodipus penicillatus Rodent Control
## 6227 Chaetodipus penicillatus Rodent Control
## 6228 Chaetodipus penicillatus Rodent Control
## 6229 Chaetodipus penicillatus Rodent Control
## 6230 Chaetodipus penicillatus Rodent Control
## 6231 Chaetodipus penicillatus Rodent Control
## 6232 Chaetodipus penicillatus Rodent Control
## 6233 Chaetodipus penicillatus Rodent Control
## 6234 Chaetodipus penicillatus Rodent Control
## 6235 Chaetodipus penicillatus Rodent Control
## 6236 Chaetodipus penicillatus Rodent Control
## 6237 Chaetodipus penicillatus Rodent Control
## 6238 Chaetodipus penicillatus Rodent Control
## 6239 Chaetodipus penicillatus Rodent Control
## 6240 Chaetodipus penicillatus Rodent Control
## 6241 Chaetodipus penicillatus Rodent Control
## 6242 Chaetodipus penicillatus Rodent Control
## 6243 Chaetodipus penicillatus Rodent Control
## 6244 Chaetodipus penicillatus Rodent Control
## 6245 Chaetodipus penicillatus Rodent Control
## 6246 Chaetodipus penicillatus Rodent Control
## 6247 Chaetodipus penicillatus Rodent Control
## 6248 Chaetodipus penicillatus Rodent Control
## 6249 Chaetodipus penicillatus Rodent Control
## 6250 Chaetodipus penicillatus Rodent Control
## 6251 Chaetodipus penicillatus Rodent Control
## 6252 Chaetodipus penicillatus Rodent Control
## 6253 Chaetodipus penicillatus Rodent Control
## 6254 Chaetodipus penicillatus Rodent Control
## 6255 Chaetodipus penicillatus Rodent Control
## 6256 Chaetodipus penicillatus Rodent Control
## 6257 Chaetodipus penicillatus Rodent Control
## 6258 Chaetodipus penicillatus Rodent Control
## 6259 Chaetodipus penicillatus Rodent Control
## 6260 Chaetodipus penicillatus Rodent Control
## 6261 Chaetodipus penicillatus Rodent Control
## 6262 Chaetodipus penicillatus Rodent Control
## 6263 Chaetodipus penicillatus Rodent Control
## 6264 Chaetodipus penicillatus Rodent Control
## 6265 Chaetodipus penicillatus Rodent Control
## 6266 Chaetodipus penicillatus Rodent Control
## 6267 Chaetodipus penicillatus Rodent Control
## 6268 Chaetodipus penicillatus Rodent Control
## 6269 Chaetodipus penicillatus Rodent Control
## 6270 Chaetodipus penicillatus Rodent Control
## 6271 Chaetodipus penicillatus Rodent Control
## 6272 Chaetodipus penicillatus Rodent Control
## 6273 Chaetodipus penicillatus Rodent Control
## 6274 Chaetodipus penicillatus Rodent Control
## 6275 Chaetodipus penicillatus Rodent Control
## 6276 Chaetodipus penicillatus Rodent Control
## 6277 Chaetodipus penicillatus Rodent Control
## 6278 Chaetodipus penicillatus Rodent Control
## 6279 Chaetodipus penicillatus Rodent Control
## 6280 Chaetodipus penicillatus Rodent Control
## 6281 Chaetodipus penicillatus Rodent Control
## 6282 Chaetodipus penicillatus Rodent Control
## 6283 Chaetodipus penicillatus Rodent Control
## 6284 Chaetodipus penicillatus Rodent Control
## 6285 Chaetodipus penicillatus Rodent Control
## 6286 Chaetodipus penicillatus Rodent Control
## 6287 Chaetodipus penicillatus Rodent Control
## 6288 Chaetodipus penicillatus Rodent Control
## 6289 Chaetodipus penicillatus Rodent Control
## 6290 Chaetodipus penicillatus Rodent Control
## 6291 Chaetodipus penicillatus Rodent Control
## 6292 Chaetodipus penicillatus Rodent Control
## 6293 Chaetodipus penicillatus Rodent Control
## 6294 Chaetodipus penicillatus Rodent Control
## 6295 Chaetodipus penicillatus Rodent Control
## 6296 Chaetodipus penicillatus Rodent Control
## 6297 Chaetodipus penicillatus Rodent Control
## 6298 Chaetodipus penicillatus Rodent Control
## 6299 Chaetodipus penicillatus Rodent Control
## 6300 Chaetodipus penicillatus Rodent Control
## 6301 Chaetodipus penicillatus Rodent Control
## 6302 Chaetodipus penicillatus Rodent Control
## 6303 Chaetodipus penicillatus Rodent Control
## 6304 Chaetodipus penicillatus Rodent Control
## 6305 Chaetodipus penicillatus Rodent Control
## 6306 Chaetodipus penicillatus Rodent Control
## 6307 Chaetodipus penicillatus Rodent Control
## 6308 Chaetodipus penicillatus Rodent Control
## 6309 Chaetodipus penicillatus Rodent Control
## 6310 Chaetodipus penicillatus Rodent Control
## 6311 Chaetodipus penicillatus Rodent Control
## 6312 Chaetodipus penicillatus Rodent Control
## 6313 Chaetodipus penicillatus Rodent Control
## 6314 Chaetodipus penicillatus Rodent Control
## 6315 Chaetodipus penicillatus Rodent Control
## 6316 Chaetodipus penicillatus Rodent Control
## 6317 Chaetodipus penicillatus Rodent Control
## 6318 Chaetodipus penicillatus Rodent Control
## 6319 Chaetodipus penicillatus Rodent Control
## 6320 Chaetodipus penicillatus Rodent Control
## 6321 Chaetodipus penicillatus Rodent Control
## 6322 Chaetodipus penicillatus Rodent Control
## 6323 Chaetodipus penicillatus Rodent Control
## 6324 Chaetodipus penicillatus Rodent Control
## 6325 Chaetodipus penicillatus Rodent Control
## 6326 Chaetodipus penicillatus Rodent Control
## 6327 Chaetodipus penicillatus Rodent Control
## 6328 Chaetodipus penicillatus Rodent Control
## 6329 Chaetodipus penicillatus Rodent Control
## 6330 Chaetodipus penicillatus Rodent Control
## 6331 Chaetodipus penicillatus Rodent Control
## 6332 Chaetodipus penicillatus Rodent Control
## 6333 Chaetodipus penicillatus Rodent Control
## 6334 Chaetodipus penicillatus Rodent Control
## 6335 Chaetodipus penicillatus Rodent Control
## 6336 Sigmodon hispidus Rodent Control
## 6337 Sigmodon hispidus Rodent Control
## 6338 Sigmodon hispidus Rodent Control
## 6339 Sigmodon hispidus Rodent Control
## 6340 Sigmodon hispidus Rodent Control
## 6341 Sigmodon hispidus Rodent Control
## 6342 Sigmodon hispidus Rodent Control
## 6343 Sigmodon hispidus Rodent Control
## 6344 Sigmodon hispidus Rodent Control
## 6345 Sigmodon hispidus Rodent Control
## 6346 Sigmodon hispidus Rodent Control
## 6347 Sigmodon hispidus Rodent Control
## 6348 Sigmodon hispidus Rodent Control
## 6349 Sigmodon hispidus Rodent Control
## 6350 Sigmodon hispidus Rodent Control
## 6351 Onychomys torridus Rodent Control
## 6352 Onychomys torridus Rodent Control
## 6353 Onychomys torridus Rodent Control
## 6354 Onychomys torridus Rodent Control
## 6355 Onychomys torridus Rodent Control
## 6356 Onychomys torridus Rodent Control
## 6357 Onychomys torridus Rodent Control
## 6358 Onychomys torridus Rodent Control
## 6359 Onychomys torridus Rodent Control
## 6360 Onychomys torridus Rodent Control
## 6361 Onychomys torridus Rodent Control
## 6362 Onychomys torridus Rodent Control
## 6363 Onychomys torridus Rodent Control
## 6364 Onychomys torridus Rodent Control
## 6365 Onychomys torridus Rodent Control
## 6366 Onychomys torridus Rodent Control
## 6367 Onychomys torridus Rodent Control
## 6368 Onychomys torridus Rodent Control
## 6369 Onychomys torridus Rodent Control
## 6370 Onychomys torridus Rodent Control
## 6371 Onychomys torridus Rodent Control
## 6372 Onychomys torridus Rodent Control
## 6373 Onychomys torridus Rodent Control
## 6374 Onychomys torridus Rodent Control
## 6375 Onychomys torridus Rodent Control
## 6376 Onychomys torridus Rodent Control
## 6377 Onychomys torridus Rodent Control
## 6378 Onychomys torridus Rodent Control
## 6379 Onychomys torridus Rodent Control
## 6380 Onychomys torridus Rodent Control
## 6381 Onychomys torridus Rodent Control
## 6382 Onychomys torridus Rodent Control
## 6383 Onychomys torridus Rodent Control
## 6384 Onychomys torridus Rodent Control
## 6385 Onychomys torridus Rodent Control
## 6386 Onychomys torridus Rodent Control
## 6387 Onychomys torridus Rodent Control
## 6388 Onychomys torridus Rodent Control
## 6389 Onychomys torridus Rodent Control
## 6390 Onychomys torridus Rodent Control
## 6391 Onychomys torridus Rodent Control
## 6392 Onychomys torridus Rodent Control
## 6393 Onychomys torridus Rodent Control
## 6394 Onychomys torridus Rodent Control
## 6395 Onychomys torridus Rodent Control
## 6396 Onychomys torridus Rodent Control
## 6397 Onychomys torridus Rodent Control
## 6398 Onychomys torridus Rodent Control
## 6399 Onychomys torridus Rodent Control
## 6400 Onychomys torridus Rodent Control
## 6401 Onychomys torridus Rodent Control
## 6402 Onychomys torridus Rodent Control
## 6403 Onychomys torridus Rodent Control
## 6404 Onychomys torridus Rodent Control
## 6405 Onychomys torridus Rodent Control
## 6406 Onychomys torridus Rodent Control
## 6407 Onychomys torridus Rodent Control
## 6408 Onychomys torridus Rodent Control
## 6409 Onychomys torridus Rodent Control
## 6410 Onychomys torridus Rodent Control
## 6411 Onychomys torridus Rodent Control
## 6412 Onychomys torridus Rodent Control
## 6413 Onychomys torridus Rodent Control
## 6414 Onychomys torridus Rodent Control
## 6415 Onychomys torridus Rodent Control
## 6416 Onychomys torridus Rodent Control
## 6417 Onychomys torridus Rodent Control
## 6418 Onychomys torridus Rodent Control
## 6419 Onychomys torridus Rodent Control
## 6420 Onychomys torridus Rodent Control
## 6421 Onychomys torridus Rodent Control
## 6422 Onychomys torridus Rodent Control
## 6423 Onychomys torridus Rodent Control
## 6424 Onychomys torridus Rodent Control
## 6425 Onychomys torridus Rodent Control
## 6426 Onychomys torridus Rodent Control
## 6427 Onychomys torridus Rodent Control
## 6428 Onychomys torridus Rodent Control
## 6429 Onychomys torridus Rodent Control
## 6430 Onychomys torridus Rodent Control
## 6431 Onychomys torridus Rodent Control
## 6432 Onychomys torridus Rodent Control
## 6433 Onychomys torridus Rodent Control
## 6434 Onychomys torridus Rodent Control
## 6435 Onychomys torridus Rodent Control
## 6436 Onychomys torridus Rodent Control
## 6437 Onychomys torridus Rodent Control
## 6438 Onychomys torridus Rodent Control
## 6439 Onychomys torridus Rodent Control
## 6440 Onychomys torridus Rodent Control
## 6441 Onychomys torridus Rodent Control
## 6442 Onychomys torridus Rodent Control
## 6443 Onychomys torridus Rodent Control
## 6444 Onychomys torridus Rodent Control
## 6445 Onychomys torridus Rodent Control
## 6446 Onychomys torridus Rodent Control
## 6447 Onychomys torridus Rodent Control
## 6448 Onychomys torridus Rodent Control
## 6449 Onychomys torridus Rodent Control
## 6450 Onychomys torridus Rodent Control
## 6451 Onychomys torridus Rodent Control
## 6452 Onychomys torridus Rodent Control
## 6453 Onychomys torridus Rodent Control
## 6454 Onychomys torridus Rodent Control
## 6455 Onychomys torridus Rodent Control
## 6456 Onychomys torridus Rodent Control
## 6457 Onychomys torridus Rodent Control
## 6458 Onychomys torridus Rodent Control
## 6459 Onychomys torridus Rodent Control
## 6460 Onychomys torridus Rodent Control
## 6461 Onychomys torridus Rodent Control
## 6462 Onychomys torridus Rodent Control
## 6463 Onychomys torridus Rodent Control
## 6464 Onychomys torridus Rodent Control
## 6465 Onychomys torridus Rodent Control
## 6466 Onychomys torridus Rodent Control
## 6467 Onychomys torridus Rodent Control
## 6468 Onychomys torridus Rodent Control
## 6469 Onychomys torridus Rodent Control
## 6470 Onychomys torridus Rodent Control
## 6471 Onychomys torridus Rodent Control
## 6472 Onychomys torridus Rodent Control
## 6473 Onychomys torridus Rodent Control
## 6474 Onychomys torridus Rodent Control
## 6475 Onychomys torridus Rodent Control
## 6476 Onychomys torridus Rodent Control
## 6477 Onychomys torridus Rodent Control
## 6478 Onychomys torridus Rodent Control
## 6479 Onychomys torridus Rodent Control
## 6480 Onychomys torridus Rodent Control
## 6481 Onychomys torridus Rodent Control
## 6482 Onychomys torridus Rodent Control
## 6483 Onychomys torridus Rodent Control
## 6484 Onychomys torridus Rodent Control
## 6485 Onychomys torridus Rodent Control
## 6486 Onychomys torridus Rodent Control
## 6487 Onychomys torridus Rodent Control
## 6488 Onychomys torridus Rodent Control
## 6489 Onychomys torridus Rodent Control
## 6490 Onychomys torridus Rodent Control
## 6491 Onychomys torridus Rodent Control
## 6492 Onychomys torridus Rodent Control
## 6493 Onychomys torridus Rodent Control
## 6494 Onychomys torridus Rodent Control
## 6495 Onychomys torridus Rodent Control
## 6496 Onychomys torridus Rodent Control
## 6497 Onychomys torridus Rodent Control
## 6498 Onychomys torridus Rodent Control
## 6499 Onychomys torridus Rodent Control
## 6500 Onychomys torridus Rodent Control
## 6501 Onychomys torridus Rodent Control
## 6502 Onychomys torridus Rodent Control
## 6503 Onychomys torridus Rodent Control
## 6504 Onychomys torridus Rodent Control
## 6505 Onychomys torridus Rodent Control
## 6506 Onychomys torridus Rodent Control
## 6507 Onychomys torridus Rodent Control
## 6508 Onychomys torridus Rodent Control
## 6509 Onychomys torridus Rodent Control
## 6510 Onychomys torridus Rodent Control
## 6511 Onychomys torridus Rodent Control
## 6512 Onychomys torridus Rodent Control
## 6513 Onychomys torridus Rodent Control
## 6514 Onychomys torridus Rodent Control
## 6515 Onychomys torridus Rodent Control
## 6516 Onychomys torridus Rodent Control
## 6517 Onychomys torridus Rodent Control
## 6518 Onychomys torridus Rodent Control
## 6519 Onychomys torridus Rodent Control
## 6520 Dipodomys ordii Rodent Control
## 6521 Dipodomys ordii Rodent Control
## 6522 Dipodomys ordii Rodent Control
## 6523 Dipodomys ordii Rodent Control
## 6524 Dipodomys ordii Rodent Control
## 6525 Dipodomys ordii Rodent Control
## 6526 Dipodomys ordii Rodent Control
## 6527 Dipodomys ordii Rodent Control
## 6528 Dipodomys ordii Rodent Control
## 6529 Dipodomys ordii Rodent Control
## 6530 Dipodomys ordii Rodent Control
## 6531 Dipodomys ordii Rodent Control
## 6532 Dipodomys ordii Rodent Control
## 6533 Dipodomys ordii Rodent Control
## 6534 Dipodomys ordii Rodent Control
## 6535 Dipodomys ordii Rodent Control
## 6536 Dipodomys ordii Rodent Control
## 6537 Dipodomys ordii Rodent Control
## 6538 Dipodomys ordii Rodent Control
## 6539 Dipodomys ordii Rodent Control
## 6540 Dipodomys ordii Rodent Control
## 6541 Dipodomys ordii Rodent Control
## 6542 Dipodomys ordii Rodent Control
## 6543 Dipodomys ordii Rodent Control
## 6544 Dipodomys ordii Rodent Control
## 6545 Dipodomys ordii Rodent Control
## 6546 Dipodomys ordii Rodent Control
## 6547 Dipodomys ordii Rodent Control
## 6548 Dipodomys ordii Rodent Control
## 6549 Dipodomys ordii Rodent Control
## 6550 Dipodomys ordii Rodent Control
## 6551 Dipodomys ordii Rodent Control
## 6552 Dipodomys ordii Rodent Control
## 6553 Dipodomys ordii Rodent Control
## 6554 Dipodomys ordii Rodent Control
## 6555 Dipodomys ordii Rodent Control
## 6556 Dipodomys ordii Rodent Control
## 6557 Dipodomys ordii Rodent Control
## 6558 Dipodomys ordii Rodent Control
## 6559 Dipodomys ordii Rodent Control
## 6560 Dipodomys ordii Rodent Control
## 6561 Dipodomys ordii Rodent Control
## 6562 Dipodomys ordii Rodent Control
## 6563 Dipodomys ordii Rodent Control
## 6564 Dipodomys ordii Rodent Control
## 6565 Dipodomys ordii Rodent Control
## 6566 Dipodomys ordii Rodent Control
## 6567 Dipodomys ordii Rodent Control
## 6568 Dipodomys ordii Rodent Control
## 6569 Dipodomys ordii Rodent Control
## 6570 Dipodomys ordii Rodent Control
## 6571 Dipodomys ordii Rodent Control
## 6572 Dipodomys ordii Rodent Control
## 6573 Dipodomys ordii Rodent Control
## 6574 Dipodomys ordii Rodent Control
## 6575 Dipodomys ordii Rodent Control
## 6576 Dipodomys ordii Rodent Control
## 6577 Dipodomys ordii Rodent Control
## 6578 Dipodomys ordii Rodent Control
## 6579 Dipodomys ordii Rodent Control
## 6580 Dipodomys ordii Rodent Control
## 6581 Dipodomys ordii Rodent Control
## 6582 Dipodomys ordii Rodent Control
## 6583 Dipodomys ordii Rodent Control
## 6584 Dipodomys ordii Rodent Control
## 6585 Dipodomys ordii Rodent Control
## 6586 Dipodomys ordii Rodent Control
## 6587 Dipodomys ordii Rodent Control
## 6588 Dipodomys ordii Rodent Control
## 6589 Dipodomys ordii Rodent Control
## 6590 Dipodomys ordii Rodent Control
## 6591 Dipodomys ordii Rodent Control
## 6592 Dipodomys ordii Rodent Control
## 6593 Dipodomys ordii Rodent Control
## 6594 Dipodomys ordii Rodent Control
## 6595 Dipodomys ordii Rodent Control
## 6596 Dipodomys ordii Rodent Control
## 6597 Dipodomys ordii Rodent Control
## 6598 Dipodomys ordii Rodent Control
## 6599 Dipodomys ordii Rodent Control
## 6600 Dipodomys ordii Rodent Control
## 6601 Dipodomys ordii Rodent Control
## 6602 Dipodomys ordii Rodent Control
## 6603 Dipodomys ordii Rodent Control
## 6604 Dipodomys ordii Rodent Control
## 6605 Dipodomys ordii Rodent Control
## 6606 Dipodomys ordii Rodent Control
## 6607 Dipodomys ordii Rodent Control
## 6608 Dipodomys ordii Rodent Control
## 6609 Dipodomys ordii Rodent Control
## 6610 Dipodomys ordii Rodent Control
## 6611 Dipodomys ordii Rodent Control
## 6612 Dipodomys ordii Rodent Control
## 6613 Dipodomys ordii Rodent Control
## 6614 Dipodomys ordii Rodent Control
## 6615 Dipodomys ordii Rodent Control
## 6616 Dipodomys ordii Rodent Control
## 6617 Dipodomys ordii Rodent Control
## 6618 Dipodomys ordii Rodent Control
## 6619 Dipodomys ordii Rodent Control
## 6620 Dipodomys ordii Rodent Control
## 6621 Dipodomys ordii Rodent Control
## 6622 Dipodomys ordii Rodent Control
## 6623 Dipodomys ordii Rodent Control
## 6624 Dipodomys ordii Rodent Control
## 6625 Dipodomys ordii Rodent Control
## 6626 Dipodomys ordii Rodent Control
## 6627 Dipodomys ordii Rodent Control
## 6628 Dipodomys ordii Rodent Control
## 6629 Dipodomys ordii Rodent Control
## 6630 Dipodomys ordii Rodent Control
## 6631 Dipodomys ordii Rodent Control
## 6632 Dipodomys ordii Rodent Control
## 6633 Dipodomys ordii Rodent Control
## 6634 Dipodomys ordii Rodent Control
## 6635 Dipodomys ordii Rodent Control
## 6636 Dipodomys ordii Rodent Control
## 6637 Dipodomys ordii Rodent Control
## 6638 Dipodomys ordii Rodent Control
## 6639 Dipodomys ordii Rodent Control
## 6640 Dipodomys ordii Rodent Control
## 6641 Dipodomys ordii Rodent Control
## 6642 Dipodomys ordii Rodent Control
## 6643 Dipodomys ordii Rodent Control
## 6644 Dipodomys ordii Rodent Control
## 6645 Dipodomys ordii Rodent Control
## 6646 Dipodomys ordii Rodent Control
## 6647 Dipodomys ordii Rodent Control
## 6648 Dipodomys ordii Rodent Control
## 6649 Dipodomys ordii Rodent Control
## 6650 Dipodomys ordii Rodent Control
## 6651 Dipodomys ordii Rodent Control
## 6652 Dipodomys ordii Rodent Control
## 6653 Dipodomys ordii Rodent Control
## 6654 Dipodomys ordii Rodent Control
## 6655 Dipodomys ordii Rodent Control
## 6656 Dipodomys ordii Rodent Control
## 6657 Dipodomys ordii Rodent Control
## 6658 Dipodomys ordii Rodent Control
## 6659 Dipodomys ordii Rodent Control
## 6660 Dipodomys ordii Rodent Control
## 6661 Dipodomys ordii Rodent Control
## 6662 Dipodomys ordii Rodent Control
## 6663 Dipodomys ordii Rodent Control
## 6664 Dipodomys ordii Rodent Control
## 6665 Dipodomys ordii Rodent Control
## 6666 Dipodomys ordii Rodent Control
## 6667 Dipodomys ordii Rodent Control
## 6668 Dipodomys ordii Rodent Control
## 6669 Dipodomys ordii Rodent Control
## 6670 Dipodomys ordii Rodent Control
## 6671 Dipodomys ordii Rodent Control
## 6672 Dipodomys ordii Rodent Control
## 6673 Dipodomys ordii Rodent Control
## 6674 Dipodomys ordii Rodent Control
## 6675 Dipodomys ordii Rodent Control
## 6676 Dipodomys ordii Rodent Control
## 6677 Dipodomys ordii Rodent Control
## 6678 Dipodomys ordii Rodent Control
## 6679 Dipodomys ordii Rodent Control
## 6680 Dipodomys ordii Rodent Control
## 6681 Dipodomys ordii Rodent Control
## 6682 Dipodomys ordii Rodent Control
## 6683 Dipodomys ordii Rodent Control
## 6684 Dipodomys ordii Rodent Control
## 6685 Dipodomys ordii Rodent Control
## 6686 Dipodomys ordii Rodent Control
## 6687 Dipodomys ordii Rodent Control
## 6688 Dipodomys ordii Rodent Control
## 6689 Dipodomys ordii Rodent Control
## 6690 Dipodomys ordii Rodent Control
## 6691 Dipodomys ordii Rodent Control
## 6692 Dipodomys ordii Rodent Control
## 6693 Dipodomys ordii Rodent Control
## 6694 Dipodomys ordii Rodent Control
## 6695 Dipodomys ordii Rodent Control
## 6696 Dipodomys ordii Rodent Control
## 6697 Dipodomys ordii Rodent Control
## 6698 Dipodomys ordii Rodent Control
## 6699 Dipodomys ordii Rodent Control
## 6700 Dipodomys ordii Rodent Control
## 6701 Dipodomys ordii Rodent Control
## 6702 Dipodomys ordii Rodent Control
## 6703 Dipodomys ordii Rodent Control
## 6704 Dipodomys ordii Rodent Control
## 6705 Dipodomys ordii Rodent Control
## 6706 Dipodomys ordii Rodent Control
## 6707 Dipodomys ordii Rodent Control
## 6708 Dipodomys ordii Rodent Control
## 6709 Dipodomys ordii Rodent Control
## 6710 Dipodomys ordii Rodent Control
## 6711 Dipodomys ordii Rodent Control
## 6712 Dipodomys ordii Rodent Control
## 6713 Dipodomys ordii Rodent Control
## 6714 Dipodomys ordii Rodent Control
## 6715 Dipodomys ordii Rodent Control
## 6716 Dipodomys ordii Rodent Control
## 6717 Dipodomys ordii Rodent Control
## 6718 Dipodomys ordii Rodent Control
## 6719 Dipodomys ordii Rodent Control
## 6720 Dipodomys ordii Rodent Control
## 6721 Dipodomys ordii Rodent Control
## 6722 Dipodomys ordii Rodent Control
## 6723 Dipodomys ordii Rodent Control
## 6724 Dipodomys ordii Rodent Control
## 6725 Dipodomys ordii Rodent Control
## 6726 Dipodomys ordii Rodent Control
## 6727 Dipodomys ordii Rodent Control
## 6728 Dipodomys ordii Rodent Control
## 6729 Dipodomys ordii Rodent Control
## 6730 Dipodomys ordii Rodent Control
## 6731 Dipodomys ordii Rodent Control
## 6732 Dipodomys ordii Rodent Control
## 6733 Dipodomys ordii Rodent Control
## 6734 Dipodomys ordii Rodent Control
## 6735 Dipodomys ordii Rodent Control
## 6736 Dipodomys ordii Rodent Control
## 6737 Dipodomys ordii Rodent Control
## 6738 Dipodomys ordii Rodent Control
## 6739 Dipodomys ordii Rodent Control
## 6740 Dipodomys ordii Rodent Control
## 6741 Dipodomys ordii Rodent Control
## 6742 Dipodomys ordii Rodent Control
## 6743 Dipodomys ordii Rodent Control
## 6744 Dipodomys ordii Rodent Control
## 6745 Dipodomys ordii Rodent Control
## 6746 Dipodomys ordii Rodent Control
## 6747 Dipodomys ordii Rodent Control
## 6748 Dipodomys ordii Rodent Control
## 6749 Dipodomys ordii Rodent Control
## 6750 Dipodomys ordii Rodent Control
## 6751 Dipodomys ordii Rodent Control
## 6752 Dipodomys ordii Rodent Control
## 6753 Dipodomys ordii Rodent Control
## 6754 Dipodomys ordii Rodent Control
## 6755 Dipodomys ordii Rodent Control
## 6756 Dipodomys ordii Rodent Control
## 6757 Dipodomys ordii Rodent Control
## 6758 Dipodomys ordii Rodent Control
## 6759 Dipodomys ordii Rodent Control
## 6760 Dipodomys ordii Rodent Control
## 6761 Dipodomys ordii Rodent Control
## 6762 Dipodomys ordii Rodent Control
## 6763 Dipodomys ordii Rodent Control
## 6764 Dipodomys ordii Rodent Control
## 6765 Dipodomys ordii Rodent Control
## 6766 Dipodomys ordii Rodent Control
## 6767 Dipodomys ordii Rodent Control
## 6768 Dipodomys ordii Rodent Control
## 6769 Dipodomys ordii Rodent Control
## 6770 Dipodomys ordii Rodent Control
## 6771 Dipodomys ordii Rodent Control
## 6772 Dipodomys ordii Rodent Control
## 6773 Dipodomys ordii Rodent Control
## 6774 Dipodomys ordii Rodent Control
## 6775 Dipodomys ordii Rodent Control
## 6776 Dipodomys ordii Rodent Control
## 6777 Dipodomys ordii Rodent Control
## 6778 Dipodomys ordii Rodent Control
## 6779 Dipodomys ordii Rodent Control
## 6780 Dipodomys ordii Rodent Control
## 6781 Onychomys sp. Rodent Control
## 6782 Spermophilus spilosoma Rodent Control
## 6783 Spermophilus spilosoma Rodent Control
## 6784 Spermophilus spilosoma Rodent Control
## 6785 Spermophilus spilosoma Rodent Control
## 6786 Spermophilus spilosoma Rodent Control
## 6787 Spermophilus spilosoma Rodent Control
## 6788 Spermophilus spilosoma Rodent Control
## 6789 Spermophilus spilosoma Rodent Control
## 6790 Spermophilus spilosoma Rodent Control
## 6791 Spermophilus spilosoma Rodent Control
## 6792 Spermophilus spilosoma Rodent Control
## 6793 Spermophilus spilosoma Rodent Control
## 6794 Spermophilus spilosoma Rodent Control
## 6795 Spermophilus spilosoma Rodent Control
## 6796 Spermophilus spilosoma Rodent Control
## 6797 Spermophilus spilosoma Rodent Control
## 6798 Onychomys leucogaster Rodent Control
## 6799 Onychomys leucogaster Rodent Control
## 6800 Onychomys leucogaster Rodent Control
## 6801 Onychomys leucogaster Rodent Control
## 6802 Onychomys leucogaster Rodent Control
## 6803 Onychomys leucogaster Rodent Control
## 6804 Onychomys leucogaster Rodent Control
## 6805 Onychomys leucogaster Rodent Control
## 6806 Onychomys leucogaster Rodent Control
## 6807 Onychomys leucogaster Rodent Control
## 6808 Onychomys leucogaster Rodent Control
## 6809 Onychomys leucogaster Rodent Control
## 6810 Onychomys leucogaster Rodent Control
## 6811 Onychomys leucogaster Rodent Control
## 6812 Onychomys leucogaster Rodent Control
## 6813 Onychomys leucogaster Rodent Control
## 6814 Onychomys leucogaster Rodent Control
## 6815 Onychomys leucogaster Rodent Control
## 6816 Onychomys leucogaster Rodent Control
## 6817 Onychomys leucogaster Rodent Control
## 6818 Onychomys leucogaster Rodent Control
## 6819 Onychomys leucogaster Rodent Control
## 6820 Onychomys leucogaster Rodent Control
## 6821 Onychomys leucogaster Rodent Control
## 6822 Onychomys leucogaster Rodent Control
## 6823 Onychomys leucogaster Rodent Control
## 6824 Onychomys leucogaster Rodent Control
## 6825 Onychomys leucogaster Rodent Control
## 6826 Onychomys leucogaster Rodent Control
## 6827 Onychomys leucogaster Rodent Control
## 6828 Onychomys leucogaster Rodent Control
## 6829 Onychomys leucogaster Rodent Control
## 6830 Onychomys leucogaster Rodent Control
## 6831 Onychomys leucogaster Rodent Control
## 6832 Onychomys leucogaster Rodent Control
## 6833 Onychomys leucogaster Rodent Control
## 6834 Onychomys leucogaster Rodent Control
## 6835 Onychomys leucogaster Rodent Control
## 6836 Onychomys leucogaster Rodent Control
## 6837 Onychomys leucogaster Rodent Control
## 6838 Onychomys leucogaster Rodent Control
## 6839 Onychomys leucogaster Rodent Control
## 6840 Onychomys leucogaster Rodent Control
## 6841 Reithrodontomys megalotis Rodent Control
## 6842 Reithrodontomys megalotis Rodent Control
## 6843 Reithrodontomys megalotis Rodent Control
## 6844 Reithrodontomys megalotis Rodent Control
## 6845 Reithrodontomys megalotis Rodent Control
## 6846 Reithrodontomys megalotis Rodent Control
## 6847 Reithrodontomys megalotis Rodent Control
## 6848 Reithrodontomys megalotis Rodent Control
## 6849 Reithrodontomys megalotis Rodent Control
## 6850 Reithrodontomys megalotis Rodent Control
## 6851 Reithrodontomys megalotis Rodent Control
## 6852 Reithrodontomys megalotis Rodent Control
## 6853 Reithrodontomys megalotis Rodent Control
## 6854 Reithrodontomys megalotis Rodent Control
## 6855 Reithrodontomys megalotis Rodent Control
## 6856 Reithrodontomys megalotis Rodent Control
## 6857 Reithrodontomys megalotis Rodent Control
## 6858 Reithrodontomys megalotis Rodent Control
## 6859 Reithrodontomys megalotis Rodent Control
## 6860 Reithrodontomys megalotis Rodent Control
## 6861 Reithrodontomys megalotis Rodent Control
## 6862 Reithrodontomys megalotis Rodent Control
## 6863 Reithrodontomys megalotis Rodent Control
## 6864 Reithrodontomys megalotis Rodent Control
## 6865 Reithrodontomys megalotis Rodent Control
## 6866 Reithrodontomys megalotis Rodent Control
## 6867 Reithrodontomys megalotis Rodent Control
## 6868 Reithrodontomys megalotis Rodent Control
## 6869 Reithrodontomys megalotis Rodent Control
## 6870 Reithrodontomys megalotis Rodent Control
## 6871 Reithrodontomys megalotis Rodent Control
## 6872 Reithrodontomys megalotis Rodent Control
## 6873 Reithrodontomys megalotis Rodent Control
## 6874 Reithrodontomys megalotis Rodent Control
## 6875 Reithrodontomys megalotis Rodent Control
## 6876 Reithrodontomys megalotis Rodent Control
## 6877 Reithrodontomys megalotis Rodent Control
## 6878 Reithrodontomys megalotis Rodent Control
## 6879 Reithrodontomys megalotis Rodent Control
## 6880 Reithrodontomys megalotis Rodent Control
## 6881 Reithrodontomys megalotis Rodent Control
## 6882 Reithrodontomys megalotis Rodent Control
## 6883 Reithrodontomys megalotis Rodent Control
## 6884 Reithrodontomys megalotis Rodent Control
## 6885 Reithrodontomys megalotis Rodent Control
## 6886 Reithrodontomys megalotis Rodent Control
## 6887 Reithrodontomys megalotis Rodent Control
## 6888 Reithrodontomys megalotis Rodent Control
## 6889 Reithrodontomys megalotis Rodent Control
## 6890 Reithrodontomys megalotis Rodent Control
## 6891 Reithrodontomys megalotis Rodent Control
## 6892 Reithrodontomys megalotis Rodent Control
## 6893 Reithrodontomys megalotis Rodent Control
## 6894 Reithrodontomys megalotis Rodent Control
## 6895 Reithrodontomys megalotis Rodent Control
## 6896 Reithrodontomys megalotis Rodent Control
## 6897 Reithrodontomys megalotis Rodent Control
## 6898 Reithrodontomys megalotis Rodent Control
## 6899 Reithrodontomys megalotis Rodent Control
## 6900 Reithrodontomys megalotis Rodent Control
## 6901 Reithrodontomys megalotis Rodent Control
## 6902 Reithrodontomys megalotis Rodent Control
## 6903 Reithrodontomys megalotis Rodent Control
## 6904 Reithrodontomys megalotis Rodent Control
## 6905 Reithrodontomys megalotis Rodent Control
## 6906 Reithrodontomys megalotis Rodent Control
## 6907 Reithrodontomys megalotis Rodent Control
## 6908 Reithrodontomys megalotis Rodent Control
## 6909 Reithrodontomys megalotis Rodent Control
## 6910 Reithrodontomys megalotis Rodent Control
## 6911 Reithrodontomys megalotis Rodent Control
## 6912 Reithrodontomys megalotis Rodent Control
## 6913 Reithrodontomys megalotis Rodent Control
## 6914 Reithrodontomys megalotis Rodent Control
## 6915 Reithrodontomys megalotis Rodent Control
## 6916 Reithrodontomys megalotis Rodent Control
## 6917 Reithrodontomys megalotis Rodent Control
## 6918 Reithrodontomys megalotis Rodent Control
## 6919 Reithrodontomys megalotis Rodent Control
## 6920 Reithrodontomys megalotis Rodent Control
## 6921 Reithrodontomys megalotis Rodent Control
## 6922 Reithrodontomys megalotis Rodent Control
## 6923 Sylvilagus audubonii Rabbit Control
## 6924 Sylvilagus audubonii Rabbit Control
## 6925 Sylvilagus audubonii Rabbit Control
## 6926 Sylvilagus audubonii Rabbit Control
## 6927 Sylvilagus audubonii Rabbit Control
## 6928 Sylvilagus audubonii Rabbit Control
## 6929 Peromyscus maniculatus Rodent Control
## 6930 Peromyscus maniculatus Rodent Control
## 6931 Peromyscus maniculatus Rodent Control
## 6932 Peromyscus maniculatus Rodent Control
## 6933 Peromyscus maniculatus Rodent Control
## 6934 Peromyscus maniculatus Rodent Control
## 6935 Peromyscus maniculatus Rodent Control
## 6936 Peromyscus maniculatus Rodent Control
## 6937 Peromyscus maniculatus Rodent Control
## 6938 Peromyscus maniculatus Rodent Control
## 6939 Peromyscus maniculatus Rodent Control
## 6940 Peromyscus maniculatus Rodent Control
## 6941 Peromyscus maniculatus Rodent Control
## 6942 Peromyscus maniculatus Rodent Control
## 6943 Peromyscus maniculatus Rodent Control
## 6944 Peromyscus maniculatus Rodent Control
## 6945 Peromyscus maniculatus Rodent Control
## 6946 Peromyscus maniculatus Rodent Control
## 6947 Peromyscus maniculatus Rodent Control
## 6948 Peromyscus maniculatus Rodent Control
## 6949 Peromyscus maniculatus Rodent Control
## 6950 Peromyscus maniculatus Rodent Control
## 6951 Ammospermophilus harrisi Rodent Control
## 6952 Ammospermophilus harrisi Rodent Control
## 6953 Ammospermophilus harrisi Rodent Control
## 6954 Ammospermophilus harrisi Rodent Control
## 6955 Ammospermophilus harrisi Rodent Control
## 6956 Ammospermophilus harrisi Rodent Control
## 6957 Ammospermophilus harrisi Rodent Control
## 6958 Ammospermophilus harrisi Rodent Control
## 6959 Ammospermophilus harrisi Rodent Control
## 6960 Ammospermophilus harrisi Rodent Control
## 6961 Ammospermophilus harrisi Rodent Control
## 6962 Ammospermophilus harrisi Rodent Control
## 6963 Ammospermophilus harrisi Rodent Control
## 6964 Ammospermophilus harrisi Rodent Control
## 6965 Ammospermophilus harrisi Rodent Control
## 6966 Ammospermophilus harrisi Rodent Control
## 6967 Ammospermophilus harrisi Rodent Control
## 6968 Ammospermophilus harrisi Rodent Control
## 6969 Ammospermophilus harrisi Rodent Control
## 6970 Ammospermophilus harrisi Rodent Control
## 6971 Ammospermophilus harrisi Rodent Control
## 6972 Ammospermophilus harrisi Rodent Control
## 6973 Ammospermophilus harrisi Rodent Control
## 6974 Ammospermophilus harrisi Rodent Control
## 6975 Ammospermophilus harrisi Rodent Control
## 6976 Ammospermophilus harrisi Rodent Control
## 6977 Ammospermophilus harrisi Rodent Control
## 6978 Ammospermophilus harrisi Rodent Control
## 6979 Ammospermophilus harrisi Rodent Control
## 6980 Ammospermophilus harrisi Rodent Control
## 6981 Ammospermophilus harrisi Rodent Control
## 6982 Ammospermophilus harrisi Rodent Control
## 6983 Ammospermophilus harrisi Rodent Control
## 6984 Ammospermophilus harrisi Rodent Control
## 6985 Dipodomys sp. Rodent Control
## 6986 Dipodomys sp. Rodent Control
## 6987 Dipodomys sp. Rodent Control
## 6988 Dipodomys sp. Rodent Control
## 6989 Amphispiza bilineata Bird Control
## 6990 Amphispiza bilineata Bird Control
## 6991 Amphispiza bilineata Bird Control
## 6992 Campylorhynchus brunneicapillus Bird Control
## 6993 Lizard sp. Reptile Control
## 6994 Chaetodipus baileyi Rodent Control
## 6995 Chaetodipus baileyi Rodent Control
## 6996 Chaetodipus baileyi Rodent Control
## 6997 Chaetodipus baileyi Rodent Control
## 6998 Chaetodipus baileyi Rodent Control
## 6999 Chaetodipus baileyi Rodent Control
## 7000 Chaetodipus baileyi Rodent Control
## 7001 Chaetodipus baileyi Rodent Control
## 7002 Chaetodipus baileyi Rodent Control
## 7003 Chaetodipus baileyi Rodent Control
## 7004 Chaetodipus baileyi Rodent Control
## 7005 Chaetodipus baileyi Rodent Control
## 7006 Chaetodipus baileyi Rodent Control
## 7007 Chaetodipus baileyi Rodent Control
## 7008 Chaetodipus baileyi Rodent Control
## 7009 Chaetodipus baileyi Rodent Control
## 7010 Chaetodipus baileyi Rodent Control
## 7011 Chaetodipus baileyi Rodent Control
## 7012 Chaetodipus baileyi Rodent Control
## 7013 Chaetodipus baileyi Rodent Control
## 7014 Chaetodipus baileyi Rodent Control
## 7015 Chaetodipus baileyi Rodent Control
## 7016 Chaetodipus baileyi Rodent Control
## 7017 Chaetodipus baileyi Rodent Control
## 7018 Chaetodipus baileyi Rodent Control
## 7019 Chaetodipus baileyi Rodent Control
## 7020 Chaetodipus baileyi Rodent Control
## 7021 Chaetodipus baileyi Rodent Control
## 7022 Chaetodipus baileyi Rodent Control
## 7023 Chaetodipus baileyi Rodent Control
## 7024 Chaetodipus baileyi Rodent Control
## 7025 Chaetodipus baileyi Rodent Control
## 7026 Chaetodipus baileyi Rodent Control
## 7027 Chaetodipus baileyi Rodent Control
## 7028 Chaetodipus baileyi Rodent Control
## 7029 Chaetodipus baileyi Rodent Control
## 7030 Chaetodipus baileyi Rodent Control
## 7031 Chaetodipus baileyi Rodent Control
## 7032 Chaetodipus baileyi Rodent Control
## 7033 Chaetodipus baileyi Rodent Control
## 7034 Chaetodipus baileyi Rodent Control
## 7035 Chaetodipus baileyi Rodent Control
## 7036 Chaetodipus baileyi Rodent Control
## 7037 Chaetodipus baileyi Rodent Control
## 7038 Chaetodipus baileyi Rodent Control
## 7039 Chaetodipus baileyi Rodent Control
## 7040 Chaetodipus baileyi Rodent Control
## 7041 Chaetodipus baileyi Rodent Control
## 7042 Chaetodipus baileyi Rodent Control
## 7043 Chaetodipus baileyi Rodent Control
## 7044 Chaetodipus baileyi Rodent Control
## 7045 Chaetodipus baileyi Rodent Control
## 7046 Chaetodipus baileyi Rodent Control
## 7047 Chaetodipus baileyi Rodent Control
## 7048 Chaetodipus baileyi Rodent Control
## 7049 Chaetodipus baileyi Rodent Control
## 7050 Chaetodipus baileyi Rodent Control
## 7051 Chaetodipus baileyi Rodent Control
## 7052 Chaetodipus baileyi Rodent Control
## 7053 Chaetodipus baileyi Rodent Control
## 7054 Chaetodipus baileyi Rodent Control
## 7055 Chaetodipus baileyi Rodent Control
## 7056 Chaetodipus baileyi Rodent Control
## 7057 Chaetodipus baileyi Rodent Control
## 7058 Chaetodipus baileyi Rodent Control
## 7059 Chaetodipus baileyi Rodent Control
## 7060 Chaetodipus baileyi Rodent Control
## 7061 Neotoma albigula Rodent Control
## 7062 Neotoma albigula Rodent Control
## 7063 Neotoma albigula Rodent Control
## 7064 Neotoma albigula Rodent Control
## 7065 Neotoma albigula Rodent Control
## 7066 Neotoma albigula Rodent Control
## 7067 Neotoma albigula Rodent Control
## 7068 Neotoma albigula Rodent Control
## 7069 Neotoma albigula Rodent Control
## 7070 Neotoma albigula Rodent Control
## 7071 Neotoma albigula Rodent Control
## 7072 Neotoma albigula Rodent Control
## 7073 Neotoma albigula Rodent Control
## 7074 Neotoma albigula Rodent Control
## 7075 Neotoma albigula Rodent Control
## 7076 Neotoma albigula Rodent Control
## 7077 Neotoma albigula Rodent Control
## 7078 Neotoma albigula Rodent Control
## 7079 Neotoma albigula Rodent Control
## 7080 Neotoma albigula Rodent Control
## 7081 Neotoma albigula Rodent Control
## 7082 Neotoma albigula Rodent Control
## 7083 Neotoma albigula Rodent Control
## 7084 Neotoma albigula Rodent Control
## 7085 Neotoma albigula Rodent Control
## 7086 Neotoma albigula Rodent Control
## 7087 Neotoma albigula Rodent Control
## 7088 Neotoma albigula Rodent Control
## 7089 Neotoma albigula Rodent Control
## 7090 Neotoma albigula Rodent Control
## 7091 Neotoma albigula Rodent Control
## 7092 Neotoma albigula Rodent Control
## 7093 Neotoma albigula Rodent Control
## 7094 Neotoma albigula Rodent Control
## 7095 Neotoma albigula Rodent Control
## 7096 Neotoma albigula Rodent Control
## 7097 Neotoma albigula Rodent Control
## 7098 Neotoma albigula Rodent Control
## 7099 Neotoma albigula Rodent Control
## 7100 Neotoma albigula Rodent Control
## 7101 Neotoma albigula Rodent Control
## 7102 Neotoma albigula Rodent Control
## 7103 Neotoma albigula Rodent Control
## 7104 Neotoma albigula Rodent Control
## 7105 Neotoma albigula Rodent Control
## 7106 Neotoma albigula Rodent Control
## 7107 Neotoma albigula Rodent Control
## 7108 Neotoma albigula Rodent Control
## 7109 Neotoma albigula Rodent Control
## 7110 Neotoma albigula Rodent Control
## 7111 Neotoma albigula Rodent Control
## 7112 Neotoma albigula Rodent Control
## 7113 Neotoma albigula Rodent Control
## 7114 Neotoma albigula Rodent Control
## 7115 Neotoma albigula Rodent Control
## 7116 Neotoma albigula Rodent Control
## 7117 Neotoma albigula Rodent Control
## 7118 Neotoma albigula Rodent Control
## 7119 Neotoma albigula Rodent Control
## 7120 Neotoma albigula Rodent Control
## 7121 Neotoma albigula Rodent Control
## 7122 Neotoma albigula Rodent Control
## 7123 Neotoma albigula Rodent Control
## 7124 Neotoma albigula Rodent Control
## 7125 Neotoma albigula Rodent Control
## 7126 Neotoma albigula Rodent Control
## 7127 Neotoma albigula Rodent Control
## 7128 Neotoma albigula Rodent Control
## 7129 Neotoma albigula Rodent Control
## 7130 Neotoma albigula Rodent Control
## 7131 Neotoma albigula Rodent Control
## 7132 Neotoma albigula Rodent Control
## 7133 Neotoma albigula Rodent Control
## 7134 Neotoma albigula Rodent Control
## 7135 Neotoma albigula Rodent Control
## 7136 Neotoma albigula Rodent Control
## 7137 Neotoma albigula Rodent Control
## 7138 Neotoma albigula Rodent Control
## 7139 Neotoma albigula Rodent Control
## 7140 Neotoma albigula Rodent Control
## 7141 Neotoma albigula Rodent Control
## 7142 Neotoma albigula Rodent Control
## 7143 Neotoma albigula Rodent Control
## 7144 Neotoma albigula Rodent Control
## 7145 Neotoma albigula Rodent Control
## 7146 Neotoma albigula Rodent Control
## 7147 Neotoma albigula Rodent Control
## 7148 Neotoma albigula Rodent Control
## 7149 Neotoma albigula Rodent Control
## 7150 Neotoma albigula Rodent Control
## 7151 Neotoma albigula Rodent Control
## 7152 Neotoma albigula Rodent Control
## 7153 Neotoma albigula Rodent Control
## 7154 Neotoma albigula Rodent Control
## 7155 Neotoma albigula Rodent Control
## 7156 Neotoma albigula Rodent Control
## 7157 Neotoma albigula Rodent Control
## 7158 Neotoma albigula Rodent Control
## 7159 Neotoma albigula Rodent Control
## 7160 Neotoma albigula Rodent Control
## 7161 Neotoma albigula Rodent Control
## 7162 Neotoma albigula Rodent Control
## 7163 Neotoma albigula Rodent Control
## 7164 Neotoma albigula Rodent Control
## 7165 Neotoma albigula Rodent Control
## 7166 Neotoma albigula Rodent Control
## 7167 Neotoma albigula Rodent Control
## 7168 Neotoma albigula Rodent Control
## 7169 Neotoma albigula Rodent Control
## 7170 Neotoma albigula Rodent Control
## 7171 Neotoma albigula Rodent Control
## 7172 Neotoma albigula Rodent Control
## 7173 Neotoma albigula Rodent Control
## 7174 Neotoma albigula Rodent Control
## 7175 Neotoma albigula Rodent Control
## 7176 Neotoma albigula Rodent Control
## 7177 Neotoma albigula Rodent Control
## 7178 Neotoma albigula Rodent Control
## 7179 Neotoma albigula Rodent Control
## 7180 Neotoma albigula Rodent Control
## 7181 Neotoma albigula Rodent Control
## 7182 Neotoma albigula Rodent Control
## 7183 Neotoma albigula Rodent Control
## 7184 Neotoma albigula Rodent Control
## 7185 Neotoma albigula Rodent Control
## 7186 Neotoma albigula Rodent Control
## 7187 Neotoma albigula Rodent Control
## 7188 Neotoma albigula Rodent Control
## 7189 Neotoma albigula Rodent Control
## 7190 Neotoma albigula Rodent Control
## 7191 Neotoma albigula Rodent Control
## 7192 Neotoma albigula Rodent Control
## 7193 Neotoma albigula Rodent Control
## 7194 Neotoma albigula Rodent Control
## 7195 Neotoma albigula Rodent Control
## 7196 Neotoma albigula Rodent Control
## 7197 Neotoma albigula Rodent Control
## 7198 Neotoma albigula Rodent Control
## 7199 Neotoma albigula Rodent Control
## 7200 Neotoma albigula Rodent Control
## 7201 Neotoma albigula Rodent Control
## 7202 Neotoma albigula Rodent Control
## 7203 Neotoma albigula Rodent Control
## 7204 Neotoma albigula Rodent Control
## 7205 Neotoma albigula Rodent Control
## 7206 Neotoma albigula Rodent Control
## 7207 Neotoma albigula Rodent Control
## 7208 Neotoma albigula Rodent Control
## 7209 Neotoma albigula Rodent Control
## 7210 Neotoma albigula Rodent Control
## 7211 Neotoma albigula Rodent Control
## 7212 Neotoma albigula Rodent Control
## 7213 Neotoma albigula Rodent Control
## 7214 Neotoma albigula Rodent Control
## 7215 Neotoma albigula Rodent Control
## 7216 Neotoma albigula Rodent Control
## 7217 Neotoma albigula Rodent Control
## 7218 Neotoma albigula Rodent Control
## 7219 Neotoma albigula Rodent Control
## 7220 Neotoma albigula Rodent Control
## 7221 Neotoma albigula Rodent Control
## 7222 Neotoma albigula Rodent Control
## 7223 Neotoma albigula Rodent Control
## 7224 Neotoma albigula Rodent Control
## 7225 Neotoma albigula Rodent Control
## 7226 Neotoma albigula Rodent Control
## 7227 Dipodomys merriami Rodent Control
## 7228 Dipodomys merriami Rodent Control
## 7229 Dipodomys merriami Rodent Control
## 7230 Dipodomys merriami Rodent Control
## 7231 Dipodomys merriami Rodent Control
## 7232 Dipodomys merriami Rodent Control
## 7233 Dipodomys merriami Rodent Control
## 7234 Dipodomys merriami Rodent Control
## 7235 Dipodomys merriami Rodent Control
## 7236 Dipodomys merriami Rodent Control
## 7237 Dipodomys merriami Rodent Control
## 7238 Dipodomys merriami Rodent Control
## 7239 Dipodomys merriami Rodent Control
## 7240 Dipodomys merriami Rodent Control
## 7241 Dipodomys merriami Rodent Control
## 7242 Dipodomys merriami Rodent Control
## 7243 Dipodomys merriami Rodent Control
## 7244 Dipodomys merriami Rodent Control
## 7245 Dipodomys merriami Rodent Control
## 7246 Dipodomys merriami Rodent Control
## 7247 Dipodomys merriami Rodent Control
## 7248 Dipodomys merriami Rodent Control
## 7249 Dipodomys merriami Rodent Control
## 7250 Dipodomys merriami Rodent Control
## 7251 Dipodomys merriami Rodent Control
## 7252 Dipodomys merriami Rodent Control
## 7253 Dipodomys merriami Rodent Control
## 7254 Dipodomys merriami Rodent Control
## 7255 Dipodomys merriami Rodent Control
## 7256 Dipodomys merriami Rodent Control
## 7257 Dipodomys merriami Rodent Control
## 7258 Dipodomys merriami Rodent Control
## 7259 Dipodomys merriami Rodent Control
## 7260 Dipodomys merriami Rodent Control
## 7261 Dipodomys merriami Rodent Control
## 7262 Dipodomys merriami Rodent Control
## 7263 Dipodomys merriami Rodent Control
## 7264 Dipodomys merriami Rodent Control
## 7265 Dipodomys merriami Rodent Control
## 7266 Dipodomys merriami Rodent Control
## 7267 Dipodomys merriami Rodent Control
## 7268 Dipodomys merriami Rodent Control
## 7269 Dipodomys merriami Rodent Control
## 7270 Dipodomys merriami Rodent Control
## 7271 Dipodomys merriami Rodent Control
## 7272 Dipodomys merriami Rodent Control
## 7273 Dipodomys merriami Rodent Control
## 7274 Dipodomys merriami Rodent Control
## 7275 Dipodomys merriami Rodent Control
## 7276 Dipodomys merriami Rodent Control
## 7277 Dipodomys merriami Rodent Control
## 7278 Dipodomys merriami Rodent Control
## 7279 Dipodomys merriami Rodent Control
## 7280 Dipodomys merriami Rodent Control
## 7281 Dipodomys merriami Rodent Control
## 7282 Dipodomys merriami Rodent Control
## 7283 Dipodomys merriami Rodent Control
## 7284 Dipodomys merriami Rodent Control
## 7285 Dipodomys merriami Rodent Control
## 7286 Dipodomys merriami Rodent Control
## 7287 Dipodomys merriami Rodent Control
## 7288 Dipodomys merriami Rodent Control
## 7289 Dipodomys merriami Rodent Control
## 7290 Dipodomys merriami Rodent Control
## 7291 Dipodomys merriami Rodent Control
## 7292 Dipodomys merriami Rodent Control
## 7293 Dipodomys merriami Rodent Control
## 7294 Dipodomys merriami Rodent Control
## 7295 Dipodomys merriami Rodent Control
## 7296 Dipodomys merriami Rodent Control
## 7297 Dipodomys merriami Rodent Control
## 7298 Dipodomys merriami Rodent Control
## 7299 Dipodomys merriami Rodent Control
## 7300 Dipodomys merriami Rodent Control
## 7301 Dipodomys merriami Rodent Control
## 7302 Dipodomys merriami Rodent Control
## 7303 Dipodomys merriami Rodent Control
## 7304 Dipodomys merriami Rodent Control
## 7305 Dipodomys merriami Rodent Control
## 7306 Dipodomys merriami Rodent Control
## 7307 Dipodomys merriami Rodent Control
## 7308 Dipodomys merriami Rodent Control
## 7309 Dipodomys merriami Rodent Control
## 7310 Dipodomys merriami Rodent Control
## 7311 Dipodomys merriami Rodent Control
## 7312 Dipodomys merriami Rodent Control
## 7313 Dipodomys merriami Rodent Control
## 7314 Dipodomys merriami Rodent Control
## 7315 Dipodomys merriami Rodent Control
## 7316 Dipodomys merriami Rodent Control
## 7317 Dipodomys merriami Rodent Control
## 7318 Dipodomys merriami Rodent Control
## 7319 Dipodomys merriami Rodent Control
## 7320 Dipodomys merriami Rodent Control
## 7321 Dipodomys merriami Rodent Control
## 7322 Dipodomys merriami Rodent Control
## 7323 Dipodomys merriami Rodent Control
## 7324 Dipodomys merriami Rodent Control
## 7325 Dipodomys merriami Rodent Control
## 7326 Dipodomys merriami Rodent Control
## 7327 Dipodomys merriami Rodent Control
## 7328 Dipodomys merriami Rodent Control
## 7329 Dipodomys merriami Rodent Control
## 7330 Dipodomys merriami Rodent Control
## 7331 Dipodomys merriami Rodent Control
## 7332 Dipodomys merriami Rodent Control
## 7333 Dipodomys merriami Rodent Control
## 7334 Dipodomys merriami Rodent Control
## 7335 Dipodomys merriami Rodent Control
## 7336 Dipodomys merriami Rodent Control
## 7337 Dipodomys merriami Rodent Control
## 7338 Dipodomys merriami Rodent Control
## 7339 Dipodomys merriami Rodent Control
## 7340 Dipodomys merriami Rodent Control
## 7341 Dipodomys merriami Rodent Control
## 7342 Dipodomys merriami Rodent Control
## 7343 Dipodomys merriami Rodent Control
## 7344 Dipodomys merriami Rodent Control
## 7345 Dipodomys merriami Rodent Control
## 7346 Dipodomys merriami Rodent Control
## 7347 Dipodomys merriami Rodent Control
## 7348 Dipodomys merriami Rodent Control
## 7349 Dipodomys merriami Rodent Control
## 7350 Dipodomys merriami Rodent Control
## 7351 Dipodomys merriami Rodent Control
## 7352 Dipodomys merriami Rodent Control
## 7353 Dipodomys merriami Rodent Control
## 7354 Dipodomys merriami Rodent Control
## 7355 Dipodomys merriami Rodent Control
## 7356 Dipodomys merriami Rodent Control
## 7357 Dipodomys merriami Rodent Control
## 7358 Dipodomys merriami Rodent Control
## 7359 Dipodomys merriami Rodent Control
## 7360 Dipodomys merriami Rodent Control
## 7361 Dipodomys merriami Rodent Control
## 7362 Dipodomys merriami Rodent Control
## 7363 Dipodomys merriami Rodent Control
## 7364 Dipodomys merriami Rodent Control
## 7365 Dipodomys merriami Rodent Control
## 7366 Dipodomys merriami Rodent Control
## 7367 Dipodomys merriami Rodent Control
## 7368 Dipodomys merriami Rodent Control
## 7369 Dipodomys merriami Rodent Control
## 7370 Dipodomys merriami Rodent Control
## 7371 Dipodomys merriami Rodent Control
## 7372 Dipodomys merriami Rodent Control
## 7373 Dipodomys merriami Rodent Control
## 7374 Dipodomys merriami Rodent Control
## 7375 Dipodomys merriami Rodent Control
## 7376 Dipodomys merriami Rodent Control
## 7377 Dipodomys merriami Rodent Control
## 7378 Dipodomys merriami Rodent Control
## 7379 Dipodomys merriami Rodent Control
## 7380 Dipodomys merriami Rodent Control
## 7381 Dipodomys merriami Rodent Control
## 7382 Dipodomys merriami Rodent Control
## 7383 Dipodomys merriami Rodent Control
## 7384 Dipodomys merriami Rodent Control
## 7385 Dipodomys merriami Rodent Control
## 7386 Dipodomys merriami Rodent Control
## 7387 Dipodomys merriami Rodent Control
## 7388 Dipodomys merriami Rodent Control
## 7389 Dipodomys merriami Rodent Control
## 7390 Dipodomys merriami Rodent Control
## 7391 Dipodomys merriami Rodent Control
## 7392 Dipodomys merriami Rodent Control
## 7393 Dipodomys merriami Rodent Control
## 7394 Dipodomys merriami Rodent Control
## 7395 Dipodomys merriami Rodent Control
## 7396 Dipodomys merriami Rodent Control
## 7397 Dipodomys merriami Rodent Control
## 7398 Dipodomys merriami Rodent Control
## 7399 Dipodomys merriami Rodent Control
## 7400 Dipodomys merriami Rodent Control
## 7401 Dipodomys merriami Rodent Control
## 7402 Dipodomys merriami Rodent Control
## 7403 Dipodomys merriami Rodent Control
## 7404 Dipodomys merriami Rodent Control
## 7405 Dipodomys merriami Rodent Control
## 7406 Dipodomys merriami Rodent Control
## 7407 Dipodomys merriami Rodent Control
## 7408 Dipodomys merriami Rodent Control
## 7409 Dipodomys merriami Rodent Control
## 7410 Dipodomys merriami Rodent Control
## 7411 Dipodomys merriami Rodent Control
## 7412 Dipodomys merriami Rodent Control
## 7413 Dipodomys merriami Rodent Control
## 7414 Dipodomys merriami Rodent Control
## 7415 Dipodomys merriami Rodent Control
## 7416 Dipodomys merriami Rodent Control
## 7417 Dipodomys merriami Rodent Control
## 7418 Dipodomys merriami Rodent Control
## 7419 Dipodomys merriami Rodent Control
## 7420 Dipodomys merriami Rodent Control
## 7421 Dipodomys merriami Rodent Control
## 7422 Dipodomys merriami Rodent Control
## 7423 Dipodomys merriami Rodent Control
## 7424 Dipodomys merriami Rodent Control
## 7425 Dipodomys merriami Rodent Control
## 7426 Dipodomys merriami Rodent Control
## 7427 Dipodomys merriami Rodent Control
## 7428 Dipodomys merriami Rodent Control
## 7429 Dipodomys merriami Rodent Control
## 7430 Dipodomys merriami Rodent Control
## 7431 Dipodomys merriami Rodent Control
## 7432 Dipodomys merriami Rodent Control
## 7433 Dipodomys merriami Rodent Control
## 7434 Dipodomys merriami Rodent Control
## 7435 Dipodomys merriami Rodent Control
## 7436 Dipodomys merriami Rodent Control
## 7437 Dipodomys merriami Rodent Control
## 7438 Dipodomys merriami Rodent Control
## 7439 Dipodomys merriami Rodent Control
## 7440 Dipodomys merriami Rodent Control
## 7441 Dipodomys merriami Rodent Control
## 7442 Dipodomys merriami Rodent Control
## 7443 Dipodomys merriami Rodent Control
## 7444 Dipodomys merriami Rodent Control
## 7445 Dipodomys merriami Rodent Control
## 7446 Dipodomys merriami Rodent Control
## 7447 Dipodomys merriami Rodent Control
## 7448 Dipodomys merriami Rodent Control
## 7449 Dipodomys merriami Rodent Control
## 7450 Dipodomys merriami Rodent Control
## 7451 Dipodomys merriami Rodent Control
## 7452 Dipodomys merriami Rodent Control
## 7453 Dipodomys merriami Rodent Control
## 7454 Dipodomys merriami Rodent Control
## 7455 Dipodomys merriami Rodent Control
## 7456 Dipodomys merriami Rodent Control
## 7457 Dipodomys merriami Rodent Control
## 7458 Dipodomys merriami Rodent Control
## 7459 Dipodomys merriami Rodent Control
## 7460 Dipodomys merriami Rodent Control
## 7461 Dipodomys merriami Rodent Control
## 7462 Dipodomys merriami Rodent Control
## 7463 Dipodomys merriami Rodent Control
## 7464 Dipodomys merriami Rodent Control
## 7465 Dipodomys merriami Rodent Control
## 7466 Dipodomys merriami Rodent Control
## 7467 Dipodomys merriami Rodent Control
## 7468 Dipodomys merriami Rodent Control
## 7469 Dipodomys merriami Rodent Control
## 7470 Dipodomys merriami Rodent Control
## 7471 Dipodomys merriami Rodent Control
## 7472 Dipodomys merriami Rodent Control
## 7473 Dipodomys merriami Rodent Control
## 7474 Dipodomys merriami Rodent Control
## 7475 Dipodomys merriami Rodent Control
## 7476 Dipodomys merriami Rodent Control
## 7477 Dipodomys merriami Rodent Control
## 7478 Dipodomys merriami Rodent Control
## 7479 Dipodomys merriami Rodent Control
## 7480 Dipodomys merriami Rodent Control
## 7481 Dipodomys merriami Rodent Control
## 7482 Dipodomys merriami Rodent Control
## 7483 Dipodomys merriami Rodent Control
## 7484 Dipodomys merriami Rodent Control
## 7485 Dipodomys merriami Rodent Control
## 7486 Dipodomys merriami Rodent Control
## 7487 Dipodomys merriami Rodent Control
## 7488 Dipodomys merriami Rodent Control
## 7489 Dipodomys merriami Rodent Control
## 7490 Dipodomys merriami Rodent Control
## 7491 Dipodomys merriami Rodent Control
## 7492 Dipodomys merriami Rodent Control
## 7493 Dipodomys merriami Rodent Control
## 7494 Dipodomys merriami Rodent Control
## 7495 Dipodomys merriami Rodent Control
## 7496 Dipodomys merriami Rodent Control
## 7497 Dipodomys merriami Rodent Control
## 7498 Dipodomys merriami Rodent Control
## 7499 Dipodomys merriami Rodent Control
## 7500 Dipodomys merriami Rodent Control
## 7501 Dipodomys merriami Rodent Control
## 7502 Dipodomys merriami Rodent Control
## 7503 Dipodomys merriami Rodent Control
## 7504 Dipodomys merriami Rodent Control
## 7505 Dipodomys merriami Rodent Control
## 7506 Dipodomys merriami Rodent Control
## 7507 Dipodomys merriami Rodent Control
## 7508 Dipodomys merriami Rodent Control
## 7509 Dipodomys merriami Rodent Control
## 7510 Dipodomys merriami Rodent Control
## 7511 Dipodomys merriami Rodent Control
## 7512 Dipodomys merriami Rodent Control
## 7513 Dipodomys merriami Rodent Control
## 7514 Dipodomys merriami Rodent Control
## 7515 Dipodomys merriami Rodent Control
## 7516 Dipodomys merriami Rodent Control
## 7517 Dipodomys merriami Rodent Control
## 7518 Dipodomys merriami Rodent Control
## 7519 Dipodomys merriami Rodent Control
## 7520 Dipodomys merriami Rodent Control
## 7521 Dipodomys merriami Rodent Control
## 7522 Dipodomys merriami Rodent Control
## 7523 Dipodomys merriami Rodent Control
## 7524 Dipodomys merriami Rodent Control
## 7525 Dipodomys merriami Rodent Control
## 7526 Dipodomys merriami Rodent Control
## 7527 Dipodomys merriami Rodent Control
## 7528 Dipodomys merriami Rodent Control
## 7529 Dipodomys merriami Rodent Control
## 7530 Dipodomys merriami Rodent Control
## 7531 Dipodomys merriami Rodent Control
## 7532 Dipodomys merriami Rodent Control
## 7533 Dipodomys merriami Rodent Control
## 7534 Dipodomys merriami Rodent Control
## 7535 Dipodomys merriami Rodent Control
## 7536 Dipodomys merriami Rodent Control
## 7537 Dipodomys merriami Rodent Control
## 7538 Dipodomys merriami Rodent Control
## 7539 Dipodomys merriami Rodent Control
## 7540 Dipodomys merriami Rodent Control
## 7541 Dipodomys merriami Rodent Control
## 7542 Dipodomys merriami Rodent Control
## 7543 Dipodomys merriami Rodent Control
## 7544 Dipodomys merriami Rodent Control
## 7545 Dipodomys merriami Rodent Control
## 7546 Dipodomys merriami Rodent Control
## 7547 Dipodomys merriami Rodent Control
## 7548 Dipodomys merriami Rodent Control
## 7549 Dipodomys merriami Rodent Control
## 7550 Dipodomys merriami Rodent Control
## 7551 Dipodomys merriami Rodent Control
## 7552 Dipodomys merriami Rodent Control
## 7553 Dipodomys merriami Rodent Control
## 7554 Dipodomys merriami Rodent Control
## 7555 Dipodomys merriami Rodent Control
## 7556 Dipodomys merriami Rodent Control
## 7557 Dipodomys merriami Rodent Control
## 7558 Dipodomys merriami Rodent Control
## 7559 Dipodomys merriami Rodent Control
## 7560 Dipodomys merriami Rodent Control
## 7561 Dipodomys merriami Rodent Control
## 7562 Dipodomys merriami Rodent Control
## 7563 Dipodomys merriami Rodent Control
## 7564 Dipodomys merriami Rodent Control
## 7565 Dipodomys merriami Rodent Control
## 7566 Dipodomys merriami Rodent Control
## 7567 Dipodomys merriami Rodent Control
## 7568 Dipodomys merriami Rodent Control
## 7569 Dipodomys merriami Rodent Control
## 7570 Dipodomys merriami Rodent Control
## 7571 Dipodomys merriami Rodent Control
## 7572 Dipodomys merriami Rodent Control
## 7573 Dipodomys merriami Rodent Control
## 7574 Dipodomys merriami Rodent Control
## 7575 Dipodomys merriami Rodent Control
## 7576 Dipodomys merriami Rodent Control
## 7577 Dipodomys merriami Rodent Control
## 7578 Dipodomys merriami Rodent Control
## 7579 Dipodomys merriami Rodent Control
## 7580 Dipodomys merriami Rodent Control
## 7581 Dipodomys merriami Rodent Control
## 7582 Dipodomys merriami Rodent Control
## 7583 Dipodomys merriami Rodent Control
## 7584 Dipodomys merriami Rodent Control
## 7585 Dipodomys merriami Rodent Control
## 7586 Dipodomys merriami Rodent Control
## 7587 Dipodomys merriami Rodent Control
## 7588 Dipodomys merriami Rodent Control
## 7589 Dipodomys merriami Rodent Control
## 7590 Dipodomys merriami Rodent Control
## 7591 Dipodomys merriami Rodent Control
## 7592 Dipodomys merriami Rodent Control
## 7593 Dipodomys merriami Rodent Control
## 7594 Dipodomys merriami Rodent Control
## 7595 Dipodomys merriami Rodent Control
## 7596 Dipodomys merriami Rodent Control
## 7597 Dipodomys merriami Rodent Control
## 7598 Dipodomys merriami Rodent Control
## 7599 Dipodomys merriami Rodent Control
## 7600 Dipodomys merriami Rodent Control
## 7601 Dipodomys merriami Rodent Control
## 7602 Dipodomys merriami Rodent Control
## 7603 Dipodomys merriami Rodent Control
## 7604 Dipodomys merriami Rodent Control
## 7605 Dipodomys merriami Rodent Control
## 7606 Dipodomys merriami Rodent Control
## 7607 Dipodomys merriami Rodent Control
## 7608 Dipodomys merriami Rodent Control
## 7609 Dipodomys merriami Rodent Control
## 7610 Dipodomys merriami Rodent Control
## 7611 Dipodomys merriami Rodent Control
## 7612 Dipodomys merriami Rodent Control
## 7613 Dipodomys merriami Rodent Control
## 7614 Dipodomys merriami Rodent Control
## 7615 Dipodomys merriami Rodent Control
## 7616 Dipodomys merriami Rodent Control
## 7617 Dipodomys merriami Rodent Control
## 7618 Dipodomys merriami Rodent Control
## 7619 Dipodomys merriami Rodent Control
## 7620 Dipodomys merriami Rodent Control
## 7621 Dipodomys merriami Rodent Control
## 7622 Dipodomys merriami Rodent Control
## 7623 Dipodomys merriami Rodent Control
## 7624 Dipodomys merriami Rodent Control
## 7625 Dipodomys merriami Rodent Control
## 7626 Dipodomys merriami Rodent Control
## 7627 Dipodomys merriami Rodent Control
## 7628 Dipodomys merriami Rodent Control
## 7629 Dipodomys merriami Rodent Control
## 7630 Dipodomys merriami Rodent Control
## 7631 Dipodomys merriami Rodent Control
## 7632 Dipodomys merriami Rodent Control
## 7633 Dipodomys merriami Rodent Control
## 7634 Dipodomys merriami Rodent Control
## 7635 Dipodomys merriami Rodent Control
## 7636 Dipodomys merriami Rodent Control
## 7637 Dipodomys merriami Rodent Control
## 7638 Dipodomys merriami Rodent Control
## 7639 Dipodomys merriami Rodent Control
## 7640 Dipodomys merriami Rodent Control
## 7641 Dipodomys merriami Rodent Control
## 7642 Dipodomys merriami Rodent Control
## 7643 Dipodomys merriami Rodent Control
## 7644 Dipodomys merriami Rodent Control
## 7645 Dipodomys merriami Rodent Control
## 7646 Dipodomys merriami Rodent Control
## 7647 Dipodomys merriami Rodent Control
## 7648 Dipodomys merriami Rodent Control
## 7649 Dipodomys merriami Rodent Control
## 7650 Dipodomys merriami Rodent Control
## 7651 Dipodomys merriami Rodent Control
## 7652 Dipodomys merriami Rodent Control
## 7653 Dipodomys merriami Rodent Control
## 7654 Dipodomys merriami Rodent Control
## 7655 Dipodomys merriami Rodent Control
## 7656 Dipodomys merriami Rodent Control
## 7657 Dipodomys merriami Rodent Control
## 7658 Dipodomys merriami Rodent Control
## 7659 Dipodomys merriami Rodent Control
## 7660 Dipodomys merriami Rodent Control
## 7661 Dipodomys merriami Rodent Control
## 7662 Dipodomys merriami Rodent Control
## 7663 Dipodomys merriami Rodent Control
## 7664 Dipodomys merriami Rodent Control
## 7665 Dipodomys merriami Rodent Control
## 7666 Dipodomys merriami Rodent Control
## 7667 Dipodomys merriami Rodent Control
## 7668 Dipodomys merriami Rodent Control
## 7669 Dipodomys merriami Rodent Control
## 7670 Dipodomys merriami Rodent Control
## 7671 Dipodomys merriami Rodent Control
## 7672 Dipodomys merriami Rodent Control
## 7673 Dipodomys merriami Rodent Control
## 7674 Dipodomys merriami Rodent Control
## 7675 Dipodomys merriami Rodent Control
## 7676 Dipodomys merriami Rodent Control
## 7677 Dipodomys merriami Rodent Control
## 7678 Dipodomys merriami Rodent Control
## 7679 Dipodomys merriami Rodent Control
## 7680 Dipodomys merriami Rodent Control
## 7681 Dipodomys merriami Rodent Control
## 7682 Dipodomys merriami Rodent Control
## 7683 Dipodomys merriami Rodent Control
## 7684 Dipodomys merriami Rodent Control
## 7685 Dipodomys merriami Rodent Control
## 7686 Dipodomys merriami Rodent Control
## 7687 Dipodomys merriami Rodent Control
## 7688 Dipodomys merriami Rodent Control
## 7689 Dipodomys merriami Rodent Control
## 7690 Dipodomys merriami Rodent Control
## 7691 Dipodomys merriami Rodent Control
## 7692 Dipodomys merriami Rodent Control
## [ reached 'max' / getOption("max.print") -- omitted 27094 rows ]
surveys_200 <- surveys[200,]
# 2
nrow(surveys)
## [1] 34786
surveys[34786,]
## # A tibble: 1 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 30986 7 1 2000 7 PX <NA> NA NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
tail(surveys)
## # A tibble: 6 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 26787 9 27 1997 7 PL F 21 16
## 2 26966 10 25 1997 7 PL M 20 16
## 3 27185 11 22 1997 7 PL F 21 22
## 4 27792 5 2 1998 7 PL F 20 8
## 5 28806 11 21 1998 7 PX <NA> NA NA
## 6 30986 7 1 2000 7 PX <NA> NA NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
surveys_last <- surveys[34786,]
# 3
surveys_middle <- surveys[nrow(surveys)/2,]
# 4
surveys[-c(7:nrow(surveys)),]
## # A tibble: 6 × 13
## record_id month day year plot_id species_id sex hindfoot_length weight
## <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr> <dbl> <dbl>
## 1 1 7 16 1977 2 NL M 32 NA
## 2 72 8 19 1977 2 NL M 31 NA
## 3 224 9 13 1977 2 NL <NA> NA NA
## 4 266 10 16 1977 2 NL <NA> NA NA
## 5 349 11 12 1977 2 NL <NA> NA NA
## 6 363 11 12 1977 2 NL <NA> NA NA
## # ℹ 4 more variables: genus <chr>, species <chr>, taxa <chr>, plot_type <chr>
Factors
surveys$sex <- factor(surveys$sex)
summary(surveys$sex)
## F M NA's
## 15690 17348 1748
sex <- factor(c("male", "female", "female", "male"))
levels(sex)
## [1] "female" "male"
nlevels(sex)
## [1] 2
sex # current order
## [1] male female female male
## Levels: female male
sex <- factor(sex, levels = c("male", "female"))
# sex in the () is the group we entered before
sex # after re-ordering
## [1] male female female male
## Levels: male female
Challenge
# 1
taxa <- factor(surveys$taxa)
genus <- factor(surveys$genus)
# 2
summary(taxa)
## Bird Rabbit Reptile Rodent
## 450 75 14 34247
## 75 Rabbit observed
nlevels(genus)
## [1] 26
## 26 genus
Converting factors
as.character(sex)
## [1] "male" "female" "female" "male"
year_fct <- factor(c(1990, 1983, 1977, 1998, 1990))
as.numeric(year_fct) # Wrong! And there is no warning...
## [1] 3 2 1 4 3
as.numeric(as.character(year_fct)) #Works...
## [1] 1990 1983 1977 1998 1990
as.numeric(levels(year_fct))[year_fct] # The recommended way.
## [1] 1990 1983 1977 1998 1990
Renaming factors
## bar plot of the number of females and males captured during the experiment:
plot(surveys$sex)

sex <- surveys$sex
levels(sex)
## [1] "F" "M"
sex <- addNA(sex)
levels(sex)
## [1] "F" "M" NA
head(sex)
## [1] M M <NA> <NA> <NA> <NA>
## Levels: F M <NA>
levels(sex)[3] <- "undetermined"
levels(sex)
## [1] "F" "M" "undetermined"
head(sex)
## [1] M M undetermined undetermined undetermined
## [6] undetermined
## Levels: F M undetermined
plot(sex)

Challenge
# 1
levels(sex)[1] <- "female"
levels(sex)[2] <- "male"
levels(sex)
## [1] "female" "male" "undetermined"
# 2
sex <- factor(sex, levels = c("undetermined", "female", "male"))
levels(sex)
## [1] "undetermined" "female" "male"
plot(sex)

Challenge
1
animal_data <- data.frame(
animal = c("dog", "cat", "sea cucumber", "sea urchin"),
feel = c("furry", "furry", "squishy", "spiny"),
weight = c(45, 8, 1.1, 0.8)
)
2
country_climate <- data.frame(
country = c("Canada", "Panama", "South Africa", "Australia"),
climate = c("cold", "hot", "temperate", "hot/temperate"),
temperature = c(10, 30, 18, 15),
northern_hemisphere = c(TRUE, TRUE, FALSE, FALSE),
has_kangaroo = c(FALSE, FALSE, FALSE, TRUE)
)
str(country_climate)
## 'data.frame': 4 obs. of 5 variables:
## $ country : chr "Canada" "Panama" "South Africa" "Australia"
## $ climate : chr "cold" "hot" "temperate" "hot/temperate"
## $ temperature : num 10 30 18 15
## $ northern_hemisphere: logi TRUE TRUE FALSE FALSE
## $ has_kangaroo : logi FALSE FALSE FALSE TRUE